tox.ini 627 B

12345678910111213141516171819202122232425262728293031323334
  1. [tox]
  2. envlist =
  3. cover,cover3,py26,py27,py32,py33,py34
  4. [testenv]
  5. commands =
  6. python setup.py test -q
  7. deps =
  8. meld3 >= 1.0.0
  9. mock >= 0.5.0
  10. [testenv:cover]
  11. basepython =
  12. python2.6
  13. commands =
  14. python setup.py nosetests --with-xunit --with-xcoverage --cover-package=supervisor --cover-erase
  15. deps =
  16. meld3 >= 1.0.0
  17. mock >= 0.5.0
  18. nose
  19. coverage
  20. nosexcover
  21. [testenv:cover3]
  22. basepython =
  23. python3.3
  24. commands =
  25. python setup.py nosetests --with-xunit --with-xcoverage --cover-package=supervisor --cover-erase
  26. deps =
  27. meld3 >= 1.0.0
  28. mock >= 0.5.0
  29. nose
  30. coverage
  31. nosexcover