From bcaf3980956cd18ac17a0b09fb3d8c6ee8ad1998 Mon Sep 17 00:00:00 2001 From: Valentin Laurent Date: Thu, 6 Feb 2025 17:52:59 +0100 Subject: [PATCH] CHORE: make test suite fail at first failed test when checking coverage, to increase CI execution time in that case --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 10415d04..ac35e430 100644 --- a/Makefile +++ b/Makefile @@ -10,14 +10,14 @@ tests: pytest -vs --doctest-modules mapie coverage: - pytest -vs \ - --doctest-modules \ + pytest -vsx \ --cov-branch \ --cov=mapie \ --cov-report term-missing \ --pyargs mapie \ --cov-fail-under=100 \ - --cov-config=.coveragerc + --cov-config=.coveragerc \ + --no-cov-on-fail doc: $(MAKE) html -C doc