From d13e0643c781cb79bae335a84bae7424c4c58b74 Mon Sep 17 00:00:00 2001 From: Guillaume Lambert Date: Thu, 27 May 2021 21:23:54 +0200 Subject: [PATCH] CI: Decrease Sphinx tox profiles logs verbosity Docs and docs-linkcheck tox profiles are using Sphinx that generates very verbose logs by default. Sphinx -q quiet option allows to display only errors and warnings. Using this option will ease potential gate failures analysis. Signed-off-by: Guillaume Lambert Change-Id: I55c587f2e17625f71e13197ab6f46bf470478738 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index ca02a4f..88c59d6 100644 --- a/tox.ini +++ b/tox.ini @@ -18,13 +18,13 @@ commands = basepython = python3 deps = -rdocs/requirements.txt commands = - sphinx-build -j auto --keep-going -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html + sphinx-build -q -j auto --keep-going -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html [testenv:docs-linkcheck] basepython = python3 deps = -rdocs/requirements.txt commands = - sphinx-build -j auto --keep-going -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck + sphinx-build -q -j auto --keep-going -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck [testenv:pre-commit] basepython = python3 -- 2.16.6