From 368528b933724b9e4d78afc639292e75d16768c7 Mon Sep 17 00:00:00 2001 From: Remco de Boer <29308176+redeboer@users.noreply.github.com> Date: Fri, 10 Nov 2023 11:38:02 +0100 Subject: [PATCH] DX: do not treat warnings as errors Unfortuntaly not possible to suppress warnings about sphinx-exercise labels specifically --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 54e962b..7c83360 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -98,7 +98,7 @@ legacy_tox_ini = """ commands = sphinx-build \ --keep-going \ - -TW \ + -T \ -b html \ docs/ docs/_build/html description = @@ -128,7 +128,7 @@ legacy_tox_ini = """ commands = sphinx-build \ --keep-going \ - -TW \ + -T \ -b html \ docs/ docs/_build/html description = @@ -142,7 +142,7 @@ legacy_tox_ini = """ allowlist_externals = sphinx-build commands = - sphinx-build -nW --keep-going -b html docs/ docs/_build/html + sphinx-build -n --keep-going -b html docs/ docs/_build/html description = Execute ALL Jupyter notebooks and build documentation with Sphinx passenv = *