tox.ini 519 B

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