From 72385f649179450a7ce47bc1f51fd1f0fe878a88 Mon Sep 17 00:00:00 2001 From: Guillaume Lambert Date: Fri, 23 Apr 2021 15:25:01 +0200 Subject: [PATCH] Decrease Sphinx tox profiles logs verbosity MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This will ease gate failures analysis. Signed-off-by: Guillaume Lambert Change-Id: I0ae21afe7502383bf55113a23d99b23af13eb644 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index eaf48bd0b..8eb8a9cac 100644 --- a/tox.ini +++ b/tox.ini @@ -7,12 +7,12 @@ skipsdist = true basepython = python3 deps = -rdocs/requirements.txt commands = - sphinx-build -j auto -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html + sphinx-build -q -j auto -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html [testenv:docs-linkcheck] basepython = python3 deps = -rdocs/requirements.txt -commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck +commands = sphinx-build -q -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck [testenv:pre-commit] basepython = python3 -- 2.36.6