Skip to content

Commit

Permalink
CHORE: make test suite fail fast when checking coverage, to increase …
Browse files Browse the repository at this point in the history
…CI execution time (#610)
  • Loading branch information
Valentin-Laurent authored Feb 6, 2025
1 parent 14fbf6b commit 9e18aee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9e18aee

Please sign in to comment.