afancontrol/tox.ini
2021-10-26 14:11:39 +02:00

33 lines
744 B
INI

[tox]
envlist=py{35,36,37,38,39}{,-arduino,-metrics},lint,check-docs
[testenv]
deps =
; Python 3.5 still ships an old setuptools version which doesn't support
; declarative setup.cfg format.
setuptools>=41.4.0
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