tox.ini 544 B

123456789101112131415161718192021222324252627
  1. # !!! When making changes, make sure to also edit .travis.yml !!!
  2. # Note: Supervisor supports Python 2.4 but "py24" is not listed in envlist
  3. # because tox has a dependency on distribute, which no longer supports 2.4.
  4. [tox]
  5. envlist =
  6. py25,py26,py27
  7. [testenv]
  8. commands =
  9. python setup.py test -q
  10. deps =
  11. mock >= 0.5.0
  12. meld3 >= 0.6.5
  13. [testenv:cover]
  14. basepython =
  15. python2.6
  16. commands =
  17. python setup.py nosetests --with-xunit --with-xcoverage
  18. deps =
  19. mock >= 0.5.0
  20. meld3 >= 0.6.5
  21. nose
  22. coverage
  23. nosexcover