diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -20,11 +20,17 @@ commands = nosetests --with-xunit \ [testenv:docs] basepython = python2.7 commands = + doc8 \ + --ignore-path docs/release/release-notes/build \ + --ignore-path docs/testing/user/configguide/build \ + --ignore-path docs/testing/user/userguide/build \ + docs/release/release-notes \ + docs/testing/user/configguide \ + docs/testing/user/userguide sphinx-build -W -b html api/ api/_build - doc8 docs/release/release-notes --ignore-path docs/release/release-notes/build sphinx-build -W -b html docs/release/release-notes docs/release/release-notes/build/html - doc8 docs/testing/user/configguide --ignore-path docs/testing/user/configguide/build 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 |