From 968b73b7bb9e4b1fc08e3364092ed42eb920996a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Mon, 16 Dec 2024 18:08:38 -0800 Subject: [PATCH] CI: suppress no-test-collected for 2nd run --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index e6055d2..542bad3 100644 --- a/tox.ini +++ b/tox.ini @@ -38,7 +38,7 @@ commands = # We rerun the failed tests hoping that it filters out some flaky server behaviour !buildhtml: pytest --nbval --suppress-tests-failed-exit-code content/ - !buildhtml: pytest --nbval --last-failed --last-failed-no-failures none content/ + !buildhtml: pytest --nbval --last-failed --last-failed-no-failures none --suppress-no-test-exit-code content/ buildhtml: sphinx-build -b html . _build/html -D nb_execution_mode=auto -nWT --keep-going pip_pre =