From 82d8af1fb1bbae7285cb20f960a1924bfe5e5e41 Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Wed, 29 Jul 2020 02:50:13 +0200 Subject: [PATCH] Make `docs` tox workflow not stop after first warning (#4090) --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 4ceecff4c..ababfe1ef 100644 --- a/tox.ini +++ b/tox.ini @@ -51,8 +51,8 @@ setenv = basepython = python3.8 extras = docs commands = - sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out/html" -W -bhtml - sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out/doctest" -W -bdoctest + sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out/html" -W --keep-going -bhtml + sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out/doctest" -W --keep-going -bdoctest [testenv:style] description = Stylecheck the code with black to see if anything needs changes.