Skip to content

Commit

Permalink
add coverage to 100%
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-stuerz committed Dec 30, 2023
1 parent c0b221c commit 553f226
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/coverage
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ MIN_COVERAGE=${2:-100}
if [ -n "$1" ]; then
MODULE=$(printf ' %q' "$@")
fi
pytest --exitfirst --verbose --failed-first --cov ${MODULE} --cov-report term-missing --cov-config .coveragerc --cov-fail-under=${MIN_COVERAGE} ${MODULE}
ls -la
ls -la .coveragerc
pytest --exitfirst --verbose --failed-first --cov=${MODULE} --cov-report term-missing --cov-config=.coveragerc --cov-fail-under=${MIN_COVERAGE} ${MODULE} --verbosity=5

0 comments on commit 553f226

Please sign in to comment.