1
0
Fork 0
forked from github/pelican

Lower minimum coverage required in invoke coverage

This commit is contained in:
Justin Mayer 2024-06-16 19:37:23 +02:00
commit b80a592d30

View file

@ -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)