tox.ini 362 B

1234567891011121314151617181920212223242526
  1. [tox]
  2. envlist =
  3. py26, py27, py33, docs
  4. [testenv]
  5. downloadcache = {toxworkdir}/_download/
  6. commands =
  7. ./runtests.sh
  8. changedir =
  9. {toxinidir}/tests
  10. deps =
  11. coverage
  12. django
  13. django-nose
  14. djangorestframework
  15. mock
  16. six
  17. [testenv:py26]
  18. basepython = python2.6
  19. [testenv:py27]
  20. basepython = python2.7
  21. [testenv:py33]
  22. basepython = python3.3