Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930
  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. [tox]
  6. envlist = py26-1.4, py27-1.4, py26-1.5, py27-1.5
  7. [testenv]
  8. commands = python runtests.py []
  9. [testenv:py26-1.4]
  10. basepython = python2.6
  11. deps = -r{toxinidir}/requirements.txt
  12. django==1.4.5
  13. [testenv:py27-1.4]
  14. basepython = python2.7
  15. deps = -r{toxinidir}/requirements.txt
  16. django==1.4.5
  17. [testenv:py26-1.5]
  18. basepython = python2.6
  19. deps = -r{toxinidir}/requirements.txt
  20. django==1.5.1
  21. [testenv:py27-1.5]
  22. basepython = python2.7
  23. deps = -r{toxinidir}/requirements.txt
  24. django==1.5.1