afancontrol/tox.ini

29 lines
610 B
INI
Raw Normal View History

2021-10-26 12:58:36 +02:00
[tox]
2021-10-27 08:44:51 +02:00
envlist=py{36,37,38,39,310}{,-arduino,-metrics},lint,check-docs
2021-10-26 12:58:36 +02:00
[testenv]
extras =
arduino: arduino
dev
metrics: metrics
whitelist_externals = make
commands = make test
; Fix coverage not working because tox doesn't install
; sources to the working dir by default.
usedevelop = True
[testenv:lint]
extras =
arduino
dev
metrics
basepython = python3
; Use `pip install -e .` so isort would treat imports from this package
; as first party imports instead of third party:
usedevelop = True
commands = make lint
[testenv:check-docs]
basepython = python3
commands = make check-docs