tox.ini 577 B

12345678910111213141516171819202122232425262728293031323334
  1. [tox]
  2. envlist =
  3. py2{6,7}
  4. py3{3,4,5,6}
  5. [testenv]
  6. commands =
  7. py.test {posargs}
  8. deps:
  9. # installs the test dependencies as specified in setup.py
  10. .[tests]
  11. [testenv:py26]
  12. commands =
  13. {[testenv]commands}
  14. deps:
  15. cryptography<2.0
  16. flake8<3.0
  17. pytest-flake8==0.5
  18. # installs the test dependencies as specified in setup.py
  19. .[tests]
  20. [testenv:py33]
  21. commands =
  22. {[testenv]commands}
  23. deps:
  24. cryptography<2.0
  25. flake8<3.0
  26. pytest-flake8==0.5
  27. # installs the test dependencies as specified in setup.py
  28. .[tests]
  29. [flake8]
  30. ignore = E501