Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

tox.ini 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Tox (http://tox.testrun.org/) is a tool for running tests
  2. # in multiple virtualenvs. This configuration file will run the
  3. # test suite on all supported python versions. To use it, "pip install tox"
  4. # and then run "tox" from this directory.
  5. [flake8]
  6. exclude = migrations
  7. max-complexity = 10
  8. [tox]
  9. envlist = py27-1.5, py27-1.6, py33-1.5, py33-1.6, py34-1.5, py34-1.6
  10. [testenv]
  11. commands = python runtests.py []
  12. [testenv:py27-1.5]
  13. basepython = python2.7
  14. deps = -r{toxinidir}/requirements_py2.txt
  15. django==1.5.8
  16. [testenv:py33-1.5]
  17. basepython = python3.3
  18. deps = -r{toxinidir}/requirements.txt
  19. django==1.5.8
  20. [testenv:py34-1.5]
  21. basepython = python3.4
  22. deps = -r{toxinidir}/requirements.txt
  23. django==1.5.8
  24. [testenv:py27-1.6]
  25. basepython = python2.7
  26. deps = -r{toxinidir}/requirements_py2.txt
  27. django==1.6.5
  28. [testenv:py33-1.6]
  29. basepython = python3.3
  30. deps = -r{toxinidir}/requirements.txt
  31. django==1.6.5
  32. [testenv:py34-1.6]
  33. basepython = python3.4
  34. deps = -r{toxinidir}/requirements.txt
  35. django==1.6.5