tox.ini 330 B

12345678910111213141516171819202122
  1. [tox]
  2. envlist =
  3. py24,py25,py26,py27
  4. [testenv]
  5. commands =
  6. python setup.py test -q
  7. deps =
  8. mock >= 0.5.0
  9. meld3 >= 0.6.5
  10. [testenv:cover]
  11. basepython =
  12. python2.6
  13. commands =
  14. python setup.py nosetests --with-xunit --with-xcoverage
  15. deps =
  16. mock >= 0.5.0
  17. meld3 >= 0.6.5
  18. nose
  19. coverage
  20. nosexcover