readthedocs.org/tox.ini

43 lines
1.0 KiB
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 = -r{toxinidir}/requirements/lint.txt
commands =
prospector \
--profile-path={toxinidir} \
--profile=prospector-more \
--die-on-tool-error
prospector \
--profile-path={toxinidir} \
--profile=prospector \
--die-on-tool-error
[testenv:coverage]
deps =
-r{toxinidir}/requirements/pip.txt
-r{toxinidir}/requirements/cov.txt
whitelist_externals = echo
commands =
py.test --disable-pytest-warnings \
--cov-report=term --cov-report=html --cov=. {posargs}
echo Annotated HTML coverage report is in {toxinidir}/readthedocs/htmlcov/index.html