From: guillaume.lambert Date: Mon, 20 Sep 2021 10:48:39 +0000 (+0200) Subject: CI: make docs jobs logs more quiet X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=1a050d1fd9ac148d6a983fd7096cd1c2dfbf63f4;p=releng%2Fbuilder.git CI: make docs jobs logs more quiet Using sphinx option -q allows to produce less docs logs and keep only warnings and errors. Signed-off-by: guillaume.lambert Change-Id: I61bdf8abc8512f799d445cc70321d929043f4f7d --- diff --git a/tox.ini b/tox.ini index 9a683a0e1..4ab7773a4 100644 --- a/tox.ini +++ b/tox.ini @@ -5,13 +5,13 @@ skipsdist = true [testenv:docs] deps = -rdocs/requirements.txt -commands = sphinx-build -W -b html -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html +commands = sphinx-build -q -W -b html -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html [testenv:docs-linkcheck] 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 -q -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck [testenv:jenkins-jobs] deps =