2015-08-03 18:24:39 +00:00
|
|
|
[tox]
|
2015-08-03 22:06:45 +00:00
|
|
|
envlist = py27,py34,lint,docs
|
2015-08-03 18:24:39 +00:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
setenv =
|
|
|
|
LANG=C
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
commands =
|
2015-08-03 21:01:54 +00:00
|
|
|
py.test {posargs}
|
2015-08-03 18:24:39 +00:00
|
|
|
|
|
|
|
[testenv:docs]
|
2015-08-03 21:01:54 +00:00
|
|
|
deps = {[testenv]deps}
|
2015-08-03 18:24:39 +00:00
|
|
|
changedir = {toxinidir}/docs
|
|
|
|
commands =
|
|
|
|
sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
|
|
|
|
|
|
|
|
[testenv:lint]
|
|
|
|
deps =
|
|
|
|
{[testenv]deps}
|
|
|
|
prospector
|
|
|
|
commands =
|
|
|
|
prospector \
|
|
|
|
--profile-path={toxinidir} \
|
|
|
|
--profile=prospector \
|
|
|
|
--die-on-tool-error
|