2014-05-17 21:58:22 -05:00
|
|
|
|
|
|
|
[tox]
|
|
|
|
envlist = py26, py27
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
deps =
|
2014-11-12 17:22:48 -06:00
|
|
|
alembic
|
2014-05-17 21:58:22 -05:00
|
|
|
coverage
|
2014-11-08 16:13:17 -06:00
|
|
|
Fabric
|
2014-05-17 21:58:22 -05:00
|
|
|
fixture
|
|
|
|
mock
|
|
|
|
nose
|
2014-05-31 00:27:57 -05:00
|
|
|
py-bcrypt
|
2014-09-24 01:19:29 -05:00
|
|
|
commands =
|
2015-07-28 20:23:11 -05:00
|
|
|
pip install --upgrade rattail[bouncer]
|
2014-09-24 01:19:29 -05:00
|
|
|
nosetests {posargs}
|
2014-05-17 21:58:22 -05:00
|
|
|
|
|
|
|
[testenv:coverage]
|
|
|
|
basepython = python
|
2014-09-24 01:48:51 -05:00
|
|
|
commands =
|
2015-07-28 20:23:11 -05:00
|
|
|
pip install --upgrade rattail[bouncer]
|
2014-09-24 01:48:51 -05:00
|
|
|
nosetests {posargs:--with-coverage --cover-html-dir={envtmpdir}/coverage}
|
2014-05-17 21:58:22 -05:00
|
|
|
|
|
|
|
[testenv:docs]
|
|
|
|
basepython = python
|
2014-11-12 17:28:42 -06:00
|
|
|
deps =
|
|
|
|
alembic
|
|
|
|
coverage
|
|
|
|
Fabric
|
|
|
|
fixture
|
|
|
|
mock
|
|
|
|
nose
|
|
|
|
py-bcrypt
|
|
|
|
Sphinx
|
2014-05-17 21:58:22 -05:00
|
|
|
changedir = docs
|
2014-09-24 01:48:51 -05:00
|
|
|
commands =
|
2015-07-28 20:23:11 -05:00
|
|
|
pip install --upgrade rattail[bouncer]
|
2014-09-24 01:48:51 -05:00
|
|
|
sphinx-build -b html -d {envtmpdir}/doctrees -W -T . {envtmpdir}/docs
|