Files
st7735-python-pimoroni/library/tox.ini
2020-03-17 16:10:41 +00:00

22 lines
296 B
INI

[tox]
envlist = py{27,35,37},qa
skip_missing_interpreters = True
[testenv]
commands =
python setup.py install
coverage run -m py.test -v -r wsx
coverage report
deps =
mock
pytest>=3.1
pytest-cov
[testenv:qa]
commands =
flake8 --ignore E501
rstcheck README.rst
deps =
flake8
rstcheck