File: 0001-Disable-coverage-requirement.patch

package info (click to toggle)
cpplint 2.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,656 kB
  • sloc: cpp: 13,681; python: 10,095; ansic: 854; sh: 30; makefile: 18
file content (21 lines) | stat: -rw-r--r-- 626 bytes parent folder | download | duplicates (2)
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 = [ "." ]