From b9881904358f8d82130d24e868c9d90a77da387d Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Fri, 10 Jul 2020 11:06:07 -0400 Subject: [PATCH] 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: Ice4687364735f5489cfaef2f7b446a72433db984 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 8d4a48fd5..df9a2d9b6 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 -- 2.36.6