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

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 = py26-1.4, py27-1.4, py26-1.5, py27-1.5, py26-1.6, py27-1.6
  10. [testenv]
  11. commands = python runtests.py []
  12. [testenv:py26-1.4]
  13. basepython = python2.6
  14. deps = -r{toxinidir}/requirements.txt
  15. django==1.4.10
  16. [testenv:py27-1.4]
  17. basepython = python2.7
  18. deps = -r{toxinidir}/requirements.txt
  19. django==1.4.10
  20. [testenv:py26-1.5]
  21. basepython = python2.6
  22. deps = -r{toxinidir}/requirements.txt
  23. django==1.5.5
  24. [testenv:py27-1.5]
  25. basepython = python2.7
  26. deps = -r{toxinidir}/requirements.txt
  27. django==1.5.5
  28. [testenv:py26-1.6]
  29. basepython = python2.6
  30. deps = -r{toxinidir}/requirements.txt
  31. django==1.6
  32. [testenv:py27-1.6]
  33. basepython = python2.7
  34. deps = -r{toxinidir}/requirements.txt
  35. django==1.6