tox.ini 303 B

12345678910111213141516171819
  1. [tox]
  2. envlist = py{36,37,38,39}
  3. [testenv]
  4. deps =
  5. check-manifest
  6. flake8
  7. pytest
  8. twine
  9. commands =
  10. check-manifest --ignore tox.ini,tests*
  11. flake8 .
  12. py.test tests
  13. python setup.py sdist bdist_wheel
  14. twine check dist/*
  15. [flake8]
  16. exclude = .tox,*.egg,build,data
  17. select = E,W,F