diff options
author | Aric Gardner <agardner@linuxfoundation.org> | 2018-09-14 17:07:38 -0400 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-10-17 13:40:09 +0200 |
commit | 49a9ccba71132dda6dd90938928e761d3ef077f2 (patch) | |
tree | 1a87566aa6a050fd5f48379dea5d6408bec13d09 /tox.ini | |
parent | eb4ea1b039d4141c488fb0146992b6cbe23fa4d5 (diff) |
Fix links to remove references to submodules
It forces one single documentation.
Change-Id: I47edd947885a4c3fb9e6579cf61fa7473b47ba31
Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
(cherry picked from commit a4990a60c9b8e499e698fab28f9368816e50c6f7)
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 15 |
1 files changed, 4 insertions, 11 deletions
@@ -23,19 +23,12 @@ basepython = python2.7 commands = doc8 \ --ignore-path api/build \ - --ignore-path docs/release/release-notes/build \ - --ignore-path docs/testing/developer/devguide/build \ - --ignore-path docs/testing/user/configguide/build \ - --ignore-path docs/testing/user/userguide/build \ + --ignore-path docs/build \ + --ignore-path docs/_build \ api \ - docs/release/release-notes \ - docs/testing/user/configguide \ - docs/testing/user/userguide + docs sphinx-build -W -b html api/ api/build - sphinx-build -W -n -b html docs/release/release-notes docs/release/release-notes/build/html - sphinx-build -W -n -b html docs/testing/developer/devguide docs/testing/developer/devguide/build/html - sphinx-build -W -n -b html docs/testing/user/configguide docs/testing/user/configguide/build/html - sphinx-build -W -n -b html docs/testing/user/userguide docs/testing/user/userguide/build/html + sphinx-build -W -n -b html -c docs/rtd docs docs/build/html sphinx-build -W -n -b linkcheck docs docs/_build/linkcheck sphinx-build -W -n -b html docs docs/_build/html |