tox.ini 392 B

123456789101112131415161718192021222324
  1. # !!! When making changes, make sure to also edit .travis.yml !!!
  2. [tox]
  3. envlist =
  4. py25,py26,py27
  5. [testenv]
  6. commands =
  7. python setup.py test -q
  8. deps =
  9. mock >= 0.5.0
  10. meld3 >= 0.6.5
  11. [testenv:cover]
  12. basepython =
  13. python2.6
  14. commands =
  15. python setup.py nosetests --with-xunit --with-xcoverage
  16. deps =
  17. mock >= 0.5.0
  18. meld3 >= 0.6.5
  19. nose
  20. coverage
  21. nosexcover