tox.ini 297 B

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