Skip to content

Commit

Permalink
Lower minimum coverage required in invoke coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmayer committed Jun 16, 2024
1 parent d83c502 commit b80a592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def coverage(c):
"""Generate code coverage of running the test suite."""
c.run(
f"{VENV_BIN}/pytest --cov=pelican --cov-report term-missing "
"--cov-fail-under 74.8",
"--cov-fail-under 74",
pty=PTY,
)
c.run(f"{VENV_BIN}/coverage html", pty=PTY)
Expand Down

0 comments on commit b80a592

Please sign in to comment.