tox.ini 450 B

12345678910111213141516171819
  1. [tox]
  2. minversion=2.3.1
  3. envlist =
  4. py{27,35}-{flake8,unit,pylint}
  5. skipsdist=True
  6. skip_missing_interpreters=True
  7. [testenv]
  8. usedevelop=True
  9. deps =
  10. -rtest-requirements.txt
  11. py35-flake8: flake8-bugbear
  12. commands =
  13. # Needed to make detox work, since it ignores usedevelop
  14. # https://github.com/tox-dev/tox/issues/180
  15. unit: pip install -e .
  16. unit: pytest {posargs}
  17. flake8: python setup.py flake8
  18. pylint: python setup.py lint