Skip to content

Commit bcaf398

Browse files
CHORE: make test suite fail at first failed test when checking coverage, to increase CI execution time in that case
1 parent 14fbf6b commit bcaf398

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ tests:
1010
pytest -vs --doctest-modules mapie
1111

1212
coverage:
13-
pytest -vs \
14-
--doctest-modules \
13+
pytest -vsx \
1514
--cov-branch \
1615
--cov=mapie \
1716
--cov-report term-missing \
1817
--pyargs mapie \
1918
--cov-fail-under=100 \
20-
--cov-config=.coveragerc
19+
--cov-config=.coveragerc \
20+
--no-cov-on-fail
2121

2222
doc:
2323
$(MAKE) html -C doc

0 commit comments

Comments
 (0)