rattail/tox.ini

28 lines
755 B
INI
Raw Normal View History

[tox]
envlist = py27, py35
[testenv]
commands =
2018-07-03 20:54:08 -05:00
pip install --upgrade pip
pip install --upgrade --upgrade-strategy eager rattail[auth,bouncer,db,tests]
nosetests {posargs}
[testenv:coverage]
basepython = python
deps = invoke
2014-09-24 01:48:51 -05:00
commands =
2018-07-03 20:54:08 -05:00
pip install --upgrade pip
pip install --upgrade --upgrade-strategy eager 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 =
2018-07-03 20:54:08 -05:00
pip install --upgrade pip
pip install --upgrade --upgrade-strategy eager rattail[auth,bouncer,db,tests]
2014-09-24 01:48:51 -05:00
sphinx-build -b html -d {envtmpdir}/doctrees -W -T . {envtmpdir}/docs