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