1
0
mirror of https://github.com/cmur2/python-bme680.git synced 2024-09-27 15:02:20 +02:00
python-bme680/library/tox.ini

26 lines
361 B
INI
Raw Normal View History

2018-09-02 12:26:04 +02:00
[tox]
2021-01-08 11:17:15 +01:00
envlist = py{27,34,35,37,38,39},qa
2018-09-02 12:26:04 +02:00
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
flake8 tests/
flake8 ../examples/
rstcheck README.rst
deps =
flake8
flake8-docstrings
flake8-quotes
rstcheck