tox.ini 504 B

123456789101112131415161718192021222324252627
  1. [tox]
  2. envlist = py26, py27, py33, py34, py35, flake8
  3. [travis]
  4. python =
  5. 3.5: py35
  6. 3.4: py34
  7. 3.3: py33
  8. 2.7: py27
  9. 2.6: py26
  10. [testenv:flake8]
  11. basepython=python
  12. deps=flake8
  13. commands=flake8 check_de_embassy
  14. [testenv]
  15. setenv =
  16. PYTHONPATH = {toxinidir}
  17. commands = python setup.py test
  18. ; If you want to make tox run the tests with the same versions, create a
  19. ; requirements.txt with the pinned versions and uncomment the following lines:
  20. ; deps =
  21. ; -r{toxinidir}/requirements.txt