From b80a592d305834b08735b4aa10c050b4e77f15da Mon Sep 17 00:00:00 2001 From: Justin Mayer Date: Sun, 16 Jun 2024 19:37:23 +0200 Subject: [PATCH] Lower minimum coverage required in `invoke coverage` --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 9a7564b2..3a1722eb 100644 --- a/tasks.py +++ b/tasks.py @@ -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)