Files
deb-python-colander/tox.ini
2013-06-14 11:51:23 -04:00

26 lines
493 B
INI

[tox]
envlist =
py26,py27,py32,py33,pypy,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
deps =
nosexcover
[testenv:docs]
basepython =
python2.6
commands =
sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
# sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest
deps =
Sphinx