sphinx-autoapi/tox.ini
Anthony Johnson fab86cbc66 Revert basestring -> str in check for autoapi_dirs
Not sure we need to be concerned about byte strings here either way.

Fixes #74
2016-06-08 16:36:11 -07:00

28 lines
481 B
INI

[tox]
envlist = py27,py35,lint,docs
[testenv]
setenv =
LANG=C
deps = -r{toxinidir}/requirements.txt
commands =
py.test {posargs}
[testenv:docs]
deps =
sphinx_rtd_theme
{[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