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 526B

1234567891011121314151617181920
  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
  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