X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=tox.ini;h=3cf573eaf5a53cc99fced8167bb63e6b7b8792ac;hb=6e15b62fa75d1d000317beb0ab5244924a3f6ca7;hp=354740fc375007891b667032ab7e4fe85f6817c9;hpb=6226413ca6e1b4c3a52a3deeb66f8f487c2704ae;p=nfvbench.git diff --git a/tox.ini b/tox.ini index 354740f..3cf573e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,10 @@ [tox] minversion = 1.6 -envlist = py27,pep8, lint +envlist = py36,pep8,lint,docs,docs-linkcheck skipsdist = True [testenv] +pip_version = pip==20.2.4 usedevelop = True install_command = pip install -U {opts} {packages} setenv = @@ -13,20 +14,21 @@ deps = -r{toxinidir}/requirements.txt commands = py.test -q --basetemp={envtmpdir} {posargs} [testenv:pep8] +basepython = python3 commands = flake8 {toxinidir} [testenv:lint] +basepython = python3 commands = pylint --rcfile pylint.rc nfvbench test [testenv:venv] +basepython = python3 commands = {posargs} [testenv:cover] +basepython = python3 commands = python setup.py testr --coverage --testr-args='{posargs}' -[testenv:docs] -commands = python setup.py build_sphinx - [flake8] # H803 skipped on purpose per list discussion. # E123, E125 skipped as they are invalid PEP-8. @@ -37,9 +39,24 @@ show-source = True #H233: Python 3.x incompatible use of print operator #H236: Python 3.x incompatible __metaclass__, use six.add_metaclass() #H302: import only modules. +#H304: No relative imports +#H306: imports not in alphabetical order #H404: multi line docstring should start without a leading new line #H405: multi line docstring summary not separated with an empty line #H904: Wrap long lines in parentheses instead of a backslash -ignore = E123,E125,H803,E302,E303,H104,H233,H236,H302,H404,H405,H904,D102,D100,D107 +ignore = E123,E125,H803,E302,E303,H104,H233,H236,H302,H304,H306,H404,H405,H904,D102,D100,D107 builtins = _ exclude=venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,dib-venv + +[testenv:docs] +basepython = python3 +deps = -rdocs/requirements.txt +commands = + sphinx-build -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html + echo "Generated docs available in {toxinidir}/docs/_build/html" +whitelist_externals = echo + +[testenv:docs-linkcheck] +basepython = python3 +deps = -rdocs/requirements.txt +commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck