From 109d809459b275b9490719662a85c365a4bd3191 Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Thu, 20 Feb 2025 11:27:52 +0200 Subject: [PATCH] tox: Silence docs build * Add "--quiet" to the docs build: otherwise it drowns out everything else when running "tox" * switch other short arguments to long ones as well for clarity Signed-off-by: Jussi Kukkonen --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 758e3f23c2..286d2f041b 100644 --- a/tox.ini +++ b/tox.ini @@ -54,4 +54,4 @@ deps = -r{toxinidir}/requirements/docs.txt commands = - sphinx-build -b html docs docs/build/html -W + sphinx-build --fail-on-warning --quiet --builder html docs docs/build/html