mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Lower minimum coverage required in invoke coverage
This commit is contained in:
parent
d83c5029b8
commit
b80a592d30
1 changed files with 1 additions and 1 deletions
2
tasks.py
2
tasks.py
|
|
@ -49,7 +49,7 @@ def coverage(c):
|
||||||
"""Generate code coverage of running the test suite."""
|
"""Generate code coverage of running the test suite."""
|
||||||
c.run(
|
c.run(
|
||||||
f"{VENV_BIN}/pytest --cov=pelican --cov-report term-missing "
|
f"{VENV_BIN}/pytest --cov=pelican --cov-report term-missing "
|
||||||
"--cov-fail-under 74.8",
|
"--cov-fail-under 74",
|
||||||
pty=PTY,
|
pty=PTY,
|
||||||
)
|
)
|
||||||
c.run(f"{VENV_BIN}/coverage html", pty=PTY)
|
c.run(f"{VENV_BIN}/coverage html", pty=PTY)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue