rattail/tox.ini

25 lines
578 B
INI
Raw Normal View History

[tox]
envlist = py27, py35
[testenv]
commands =
2016-12-16 21:04:05 -06:00
pip install --upgrade rattail[auth,bouncer,db,tests]
nosetests {posargs}
[testenv:coverage]
basepython = python
deps = invoke
2014-09-24 01:48:51 -05:00
commands =
2017-03-24 12:25:21 -05:00
pip install --upgrade rattail[auth,bouncer,db,tests] appy xlrd
2014-09-24 01:48:51 -05:00
nosetests {posargs:--with-coverage --cover-html-dir={envtmpdir}/coverage}
[testenv:docs]
basepython = python
2016-12-16 21:09:12 -06:00
deps =
Sphinx
changedir = docs
2014-09-24 01:48:51 -05:00
commands =
2016-12-16 21:07:14 -06:00
pip install --upgrade rattail[auth,bouncer,db,tests]
2014-09-24 01:48:51 -05:00
sphinx-build -b html -d {envtmpdir}/doctrees -W -T . {envtmpdir}/docs