recommonmark/tox.ini

40 lines
571 B
INI
Raw Normal View History

[tox]
envlist =
py{27,34,35,36}
lint
docs
[tox:travis]
2018-04-27 09:36:51 -07:00
2.7 = py27, docs, #lint
3.4 = py34
3.5 = py35
3.6 = py36
[testenv]
setenv =
LANG=C
deps =
.
pytest
2018-05-30 15:48:39 -04:00
sphinx<1.7
commands =
py.test {posargs}
[testenv:docs]
deps =
{[testenv]deps}
sphinx_rtd_theme
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