blob: 54b08ec094975f603767352090fd28095a52284a [file] [log] [blame]
Martí Bolívar53328472021-03-26 16:18:58 -07001[tox]
2envlist=py3
3
4[testenv]
5deps =
6 setuptools-scm
7 pytest
Chris Duf436616c2022-12-26 20:22:46 +01008 types-PyYAML
Martí Bolívar2e0d95f2021-04-23 14:34:47 -07009 mypy
Martí Bolívar53328472021-03-26 16:18:58 -070010setenv =
11 TOXTEMPDIR={envtmpdir}
12commands =
13 python -m pytest {posargs:tests}
Martí Bolívar2e0d95f2021-04-23 14:34:47 -070014 python -m mypy --config-file={toxinidir}/tox.ini --package=devicetree
15
16[mypy]
17mypy_path=src
18ignore_missing_imports=True
19