tox.ini 729 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # !!! When making changes, make sure to also edit .travis.yml !!!
  2. [tox]
  3. envlist =
  4. cover,cover3,py26,py27,py32,py33,py34
  5. [testenv]
  6. commands =
  7. python setup.py test -q
  8. deps =
  9. meld3 >= 1.0.0
  10. mock >= 0.5.0
  11. usedevelop = true
  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. meld3 >= 1.0.0
  19. mock >= 0.5.0
  20. nose
  21. coverage
  22. nosexcover
  23. usedevelop = true
  24. [testenv:cover3]
  25. basepython =
  26. python3.3
  27. commands =
  28. python setup.py nosetests --with-xunit --with-xcoverage --cover-package=supervisor --cover-erase
  29. deps =
  30. meld3 >= 1.0.0
  31. mock >= 0.5.0
  32. nose
  33. coverage
  34. nosexcover