2021-03-26 16:18:58 -07:00
|
|
|
[tox]
|
|
|
|
envlist=py3
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
deps =
|
|
|
|
setuptools-scm
|
|
|
|
pytest
|
2022-06-06 08:30:11 -07:00
|
|
|
types-PyYAML==6.0.7
|
2021-04-23 14:34:47 -07:00
|
|
|
mypy
|
2021-03-26 16:18:58 -07:00
|
|
|
setenv =
|
|
|
|
TOXTEMPDIR={envtmpdir}
|
|
|
|
commands =
|
|
|
|
python -m pytest {posargs:tests}
|
2021-04-23 14:34:47 -07:00
|
|
|
python -m mypy --config-file={toxinidir}/tox.ini --package=devicetree
|
|
|
|
|
|
|
|
[mypy]
|
|
|
|
mypy_path=src
|
|
|
|
ignore_missing_imports=True
|
|
|
|
|