1
0
mirror of https://github.com/cmur2/python-bme680.git synced 2024-06-02 10:34:40 +02:00
python-bme680/library/tox.ini
cn 01d590d826 ci: add GHA
- drops usage of Travis CI
2021-01-08 11:22:34 +01:00

26 lines
361 B
INI

[tox]
envlist = py{27,34,35,37,38,39},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
flake8 tests/
flake8 ../examples/
rstcheck README.rst
deps =
flake8
flake8-docstrings
flake8-quotes
rstcheck