mirror of
https://github.com/vale981/recommonmark
synced 2025-03-05 18:11:39 -05:00
26 lines
461 B
INI
26 lines
461 B
INI
[tox]
|
|
envlist = py27,py34,lint,docs
|
|
|
|
[testenv]
|
|
setenv =
|
|
LANG=C
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
commands =
|
|
py.test {posargs}
|
|
|
|
[testenv:docs]
|
|
deps = {[testenv]deps}
|
|
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
|