readthedocs.org/tox.ini

35 lines
696 B
INI
Raw Normal View History

[tox]
2015-07-20 08:10:56 +00:00
envlist = py27,lint,docs
skipsdist = True
[testenv]
setenv =
PYTHONPATH={toxinidir}/readthedocs:{toxinidir}
DJANGO_SETTINGS_MODULE=settings.test
2015-07-20 08:07:40 +00:00
LANG=C
DJANGO_SETTINGS_SKIP_LOCAL=True
deps = -r{toxinidir}/requirements/pip.txt
changedir = {toxinidir}/readthedocs
commands =
2015-07-19 07:03:55 +00:00
py.test {posargs}
[testenv:docs]
changedir = {toxinidir}/docs
commands =
sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:lint]
deps =
2015-07-19 07:03:55 +00:00
{[testenv]deps}
2015-08-05 18:32:23 +00:00
maxcdn
astroid<1.4
pylint<1.5
prospector
2015-12-03 23:05:55 +00:00
pylint-django<0.7
2016-05-04 16:21:39 +00:00
pyflakes<1.2.0
commands =
prospector \
--profile-path={toxinidir} \
--profile=prospector \
--die-on-tool-error