tox.ini 286 B

12345678910111213141516171819202122232425262728
  1. [tox]
  2. envlist =
  3. py27
  4. py34
  5. py35
  6. py36
  7. flake8
  8. [travis]
  9. python =
  10. 2.7: py27, flake8
  11. 3.4: py34, flake8
  12. 3.5: py35, flake8
  13. 3.6: py36, flake8
  14. [testenv]
  15. commands =
  16. python setup.py test
  17. [testenv:flake8]
  18. deps =
  19. flake8==2.6.0
  20. commands =
  21. flake8