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

123456789101112131415161718192021222324252627282930313233343536373839404142
  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,south_migrations
  7. max-complexity = 10
  8. ignore = W503
  9. [testenv]
  10. commands = python runtests.py []
  11. [testenv:py27-1.6]
  12. basepython = python2.7
  13. deps = -r{toxinidir}/requirements_py2.txt
  14. django==1.6.8
  15. [testenv:py33-1.6]
  16. basepython = python3.3
  17. deps = -r{toxinidir}/requirements.txt
  18. django==1.6.8
  19. [testenv:py34-1.6]
  20. basepython = python3.4
  21. deps = -r{toxinidir}/requirements.txt
  22. django==1.6.8
  23. [testenv:py27-1.7]
  24. basepython = python2.7
  25. deps = -r{toxinidir}/requirements_py2.txt
  26. django==1.7.1
  27. [testenv:py33-1.7]
  28. basepython = python3.3
  29. deps = -r{toxinidir}/requirements.txt
  30. django==1.7.1
  31. [testenv:py34-1.7]
  32. basepython = python3.4
  33. deps = -r{toxinidir}/requirements.txt
  34. django==1.7.1