diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -13,7 +13,6 @@ skipsdist = True envlist = pep8, py35, - docs, docs-linkcheck [testenv] @@ -40,14 +39,17 @@ whitelist_externals = wget echo [testenv:pep8] +basepython = python3.5 commands = flake8 {toxinidir} [flake8] +basepython = python3.5 show-source = True ignore = E123,E125,H803,E722,W503 exclude = .tox,dist,docs,*egg,build,.venv,.git [testenv:docs] +basepython = python3.6 deps = -rdocs/requirements.txt commands = sphinx-build -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html @@ -55,6 +57,7 @@ commands = whitelist_externals = echo [testenv:docs-linkcheck] +basepython = python3.5 deps = -rdocs/requirements.txt commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck |