tox.ini 449 B

123456789101112131415161718192021222324
  1. [tox]
  2. envlist =
  3. py24,py25,py26,py27
  4. # should really have 2.3 in there but i cant built it easily anymore
  5. # coverage tests fail due to some logger error
  6. [testenv]
  7. commands =
  8. python setup.py test -q
  9. deps =
  10. mock >= 0.5.0
  11. meld3 >= 0.6.5
  12. [testenv:cover]
  13. basepython =
  14. python2.6
  15. commands =
  16. python setup.py nosetests --with-xunit --with-xcoverage
  17. deps =
  18. mock >= 0.5.0
  19. meld3 >= 0.6.5
  20. nose
  21. coverage
  22. nosexcover