diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 26 |
1 files changed, 25 insertions, 1 deletions
@@ -19,7 +19,30 @@ commands = nosetests --with-xunit \ [testenv:docs] basepython = python2.7 -commands = sphinx-build -W -b html api/ api/_build +commands = + doc8 \ + --ignore-path api/build \ + --ignore-path docs/release/release-notes/build \ + --ignore-path docs/testing/developer/devguide/build \ + --ignore-path docs/testing/developer/internship/security_group/build \ + --ignore-path docs/testing/developer/internship/testapi_evolution/build \ + --ignore-path docs/testing/developer/internship/unit_tests/build \ + --ignore-path docs/testing/developer/internship/vnf_catalog/build \ + --ignore-path docs/testing/user/configguide/build \ + --ignore-path docs/testing/user/userguide/build \ + api \ + docs/release/release-notes \ + docs/testing/user/configguide \ + docs/testing/user/userguide + sphinx-build -W -b html api/ api/build + sphinx-build -W -b html docs/release/release-notes docs/release/release-notes/build/html + sphinx-build -W -b html docs/testing/developer/devguide docs/testing/developer/devguide/build/html + sphinx-build -W -b html docs/testing/developer/internship/security_group docs/testing/developer/internship/security_group/build/html + sphinx-build -W -b html docs/testing/developer/internship/testapi_evolution docs/testing/developer/internship/testapi_evolution/build/html + sphinx-build -W -b html docs/testing/developer/internship/unit_tests docs/testing/developer/internship/unit_tests/build/html + sphinx-build -W -b html docs/testing/developer/internship/vnf_catalog docs/testing/developer/internship/vnf_catalog/build/html + sphinx-build -W -b html docs/testing/user/configguide docs/testing/user/configguide/build/html + sphinx-build -W -b html docs/testing/user/userguide docs/testing/user/userguide/build/html [testenv:pep8] basepython = python2.7 @@ -64,6 +87,7 @@ commands = [testenv:yamllint] basepython = python2.7 files = + .travis.yml docker functest/api functest/ci |