25 lines
453 B
INI
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
|