You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tox.ini 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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, py26-1.6, py27-1.6
  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.8
  13. [testenv:py27-1.4]
  14. basepython = python2.7
  15. deps = -r{toxinidir}/requirements.txt
  16. django==1.4.8
  17. [testenv:py26-1.5]
  18. basepython = python2.6
  19. deps = -r{toxinidir}/requirements.txt
  20. django==1.5.4
  21. [testenv:py27-1.5]
  22. basepython = python2.7
  23. deps = -r{toxinidir}/requirements.txt
  24. django==1.5.4
  25. [testenv:py26-1.6]
  26. basepython = python2.6
  27. deps = -r{toxinidir}/requirements.txt
  28. https://www.djangoproject.com/download/1.6c1/tarball/
  29. [testenv:py27-1.6]
  30. basepython = python2.7
  31. deps = -r{toxinidir}/requirements.txt
  32. https://www.djangoproject.com/download/1.6c1/tarball/