X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=tox.ini;h=946192c5017358129d8c7067371cdba2af6d3e45;hb=refs%2Fheads%2Fheads%2Ffor%2Fstable%2Faluminium;hp=7b2b283a551d1bdb393707db59a5ae032a79e3b4;hpb=db890e6208e56f9b1fd5b774bf448de3def7e399;p=integration%2Fdistribution.git diff --git a/tox.ini b/tox.ini index 7b2b283a..946192c5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,17 +1,35 @@ [tox] minversion = 1.6.0 -envlist = pep8,coala +envlist = + coala, + docs, + docs-linkcheck, + pep8 skipsdist = true [testenv:coala] basepython = python3 deps = - coala - coala-bears + coala==0.11 + coala-bears==0.11 + pygments~=2.3.1 + # Requests 2.16 breaks dependencies + requests<2.16 commands = python3 -m nltk.downloader punkt maxent_treebank_pos_tagger averaged_perceptron_tagger coala --non-interactive +[testenv:docs] +deps = -rdocs/requirements.txt +commands = + sphinx-build -W -b html -n -W -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html + echo "Generated docs available in {toxinidir}/docs/_build/html" +whitelist_externals = echo + +[testenv:docs-linkcheck] +deps = -rdocs/requirements.txt +commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck + [testenv:pep8] deps = flake8