tox.ini 567 B

1234567891011121314151617181920212223242526272829
  1. [tox]
  2. envlist =
  3. cover,cover3,py26,py27,py32,py33,py34,pypy
  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. {[testenv]deps}
  17. nose
  18. coverage
  19. nosexcover
  20. [testenv:cover3]
  21. basepython =
  22. python3.3
  23. commands =
  24. python setup.py nosetests --with-xunit --with-xcoverage --cover-package=supervisor --cover-erase
  25. deps =
  26. {[testenv:cover]deps}