1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Jochen Sprickerhof <jspricke@debian.org>
Date: Sat, 10 Dec 2022 09:27:54 +0100
Subject: Disable coverage report
---
pyproject.toml | 1 -
1 file changed, 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 8fe9c57..a956b7e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -183,7 +183,6 @@ write_to_template = "__version__ = \"{version}\"\n" # VERSION_INFO is populated
[tool.pytest.ini_options]
testpaths = ["test"]
-addopts = "--cov-report html --cov-report term --junitxml=pytest.xml --cov pylsp --cov test"
[tool.coverage.run]
concurrency = ["multiprocessing", "thread"]
|