X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=tox.ini;h=c62d42d939119492064bb533d0e028728a8e464e;hb=1f9e0751e22e3684211991d089bea8dda0c088a8;hp=85f46013a6c35c44e14aafdea4eaf6756084b407;hpb=23bcd93f5f9935c151562408a38176a5dc944be2;p=integration%2Fdistribution.git diff --git a/tox.ini b/tox.ini index 85f46013..c62d42d9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,18 +1,43 @@ [tox] minversion = 1.6.0 -envlist = pep8 +envlist = + coala, + docs, + docs-linkcheck, + pep8 skipsdist = true +[testenv:coala] +basepython = python3 +deps = + 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 -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck + [testenv:pep8] deps = flake8 - pep8==1.7.0 commands = flake8 [flake8] show-source = True max-line-length = 120 - # - Select E121, E123, E126, E226, E241, E242 and E704 which are turned OFF # by default but represent guidelines accepted by us. # - Do not select E133 because it is incompatible with E123 which was @@ -22,3 +47,7 @@ max-line-length = 120 # that (select E133 instead of E123) but that should be caught by the # verify job. select = E,W +exclude = + .git, + .tox, + docs/conf.py