From a2b82af2f372a082d1d76ea261b2af54c86a2200 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Fri, 10 Jul 2020 10:11:36 -0400 Subject: [PATCH 1/1] 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: I545f7cfaea27f907c13b5c21af26f1ee4b7d1b62 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index db1ed9604..659e6913b 100644 --- a/tox.ini +++ b/tox.ini @@ -71,7 +71,7 @@ commands = passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY basepython = python3 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 [testenv:autopep8] basepython = python3 -- 2.36.6