12345678910111213141516171819202122232425 |
- # Note: Supervisor supports Python 2.4 but "py24" is not listed in envlist
- # because tox has a dependency on distribute, which no longer supports 2.4.
- [tox]
- envlist =
- py26,py27,cover
- [testenv]
- commands =
- python setup.py test -q
- deps =
- mock >= 0.5.0
- meld3 >= 0.6.5
- [testenv:cover]
- basepython =
- python2.6
- commands =
- python setup.py nosetests --with-xunit --with-xcoverage --cover-package=supervisor --cover-erase
- deps =
- mock >= 0.5.0
- meld3 >= 0.6.5
- nose
- coverage
- nosexcover
|