tox.ini 575 B

1234567891011121314151617181920212223242526272829
  1. # !!! When making changes, make sure to also edit .travis.yml !!!
  2. # Note: Supervisor supports Python 2.4 but "py24" is not listed in envlist
  3. # because tox has a dependency on distribute, which no longer supports 2.4.
  4. [tox]
  5. envlist =
  6. py26,py27
  7. [testenv]
  8. commands =
  9. python setup.py test -q
  10. deps =
  11. mock >= 0.5.0
  12. meld3 >= 0.6.5
  13. usedevelop = true
  14. [testenv:cover]
  15. basepython =
  16. python2.6
  17. commands =
  18. python setup.py nosetests --with-xunit --with-xcoverage
  19. deps =
  20. mock >= 0.5.0
  21. meld3 >= 0.6.5
  22. nose
  23. coverage
  24. nosexcover
  25. usedevelop = true