From: Thanh Ha Date: Fri, 10 Jul 2020 14:57:46 +0000 (-0400) Subject: Do not fail on warnings for docs-linkcheck X-Git-Tag: v2.0.3~4 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=e3e2f56ffb7f71f3396dce48f703b94f960c2de3;hp=987e2e706d0b343304142626bc870f3e8c909b51 Do not fail on warnings for docs-linkcheck This is a workaround due to sphinx-tabs being incompatible with the Sphinx linkchecker which throws a warning. We mainly use linkchecker to catch broken links so we don't really need to fail on warnings as the main "docs" builder will still fail for warning level issues so this is a reasonable workaround. Signed-off-by: Thanh Ha Change-Id: If3e7cea79528ed31fadcea7c7a4c4e13315d1fcd --- diff --git a/tox.ini b/tox.ini index 8d4a48fd56..df9a2d9b65 100644 --- a/tox.ini +++ b/tox.ini @@ -12,5 +12,5 @@ commands = [testenv:docs-linkcheck] deps = -rdocs/requirements.txt -commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck +commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck