1[tox] 2envlist=py3 3 4[testenv] 5deps = 6 setuptools-scm 7 pytest 8 types-PyYAML 9 mypy 10setenv = 11 TOXTEMPDIR={envtmpdir} 12commands = 13 python -m pytest {posargs:tests} 14 python -m mypy --config-file={toxinidir}/tox.ini --package=devicetree 15 16[mypy] 17mypy_path=src 18ignore_missing_imports=True 19 20