tox.ini 410 B

12345678910111213141516171819
  1. [tox]
  2. envlist = py37, py38, py39, check-manifest, flake8
  3. [testenv]
  4. sitepackages = true
  5. deps = .[test]
  6. commands =
  7. python -m pytest \
  8. --basetemp={envtmpdir} \
  9. --cov=mopidy_webhooks--cov-report=term-missing \
  10. {posargs}
  11. [testenv:check-manifest]
  12. deps = .[lint]
  13. commands = python -m check_manifest
  14. [testenv:flake8]
  15. deps = .[lint]
  16. commands = python -m flake8 --show-source --statistics