Files
deb-python-colander/tox.ini
2014-11-26 11:04:26 -05:00

25 lines
453 B
INI

[tox]
envlist =
py26,py27,py32,py33,py34,pypy,pypy3,cover,docs
[testenv]
commands =
python setup.py dev
python -Wd setup.py test -q
[testenv:cover]
basepython =
python2.6
commands =
python setup.py nosetests --with-xunit --with-xcoverage --cover-min-percentage=100
deps =
nosexcover
[testenv:docs]
basepython =
python2.6
commands =
sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
deps =
Sphinx