1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Jochen Sprickerhof <jspricke@debian.org>
Date: Thu, 16 Oct 2025 14:47:27 +0200
Subject: Disable coverage requirement
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index a401639..d58e8d6 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -201,7 +201,7 @@ min-public-methods = 0
[tool.pytest.ini_options]
# fail if coverage is under 90%
-addopts = "--color=yes --cov-fail-under=90 --cov=cpplint"
+addopts = "--color=yes --cov=cpplint"
python_files = [ "*test.py" ]
required_plugins = [ "pytest-cov", "pytest-timeout" ]
testpaths = [ "." ]
|