Description: Remove coverage from pytest
 Files generated by coverage makes lintian unhappy and the coverage results do not
 matter in debian.
Author: Ananthu C V <weepingclown@disroot.org>
Forwarded: not-needed
Last-Update: 2023-11-29
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -124,36 +124,9 @@
 minversion = "7"
 log_cli_level = "INFO"
 xfail_strict = true
-addopts = [
-    "-ra",
-    "--strict-config",
-    "--strict-markers",
-    "--cov=cooler",
-    "--cov-config=pyproject.toml",
-    "--cov-report=term-missing",
-    "--cov-report=html",
-    "--cov-report=xml",
-]
 filterwarnings = ["ignore::PendingDeprecationWarning"]
 testpaths = ["tests"]
 
-[tool.coverage.run]
-source = ["cooler"]
-
-omit = [
-    "*/cooler/__main__.py",
-    "*/cooler/_version.py",
-    "*/cooler/sandbox/*",
-    "*/cooler/cli/csort.py"
-]
-
-[tool.coverage.report]
-exclude_lines = [
-    "pragma: no cover",
-    "return NotImplemented",
-    "raise NotImplementedError"
-]
-
 [tool.hatch.envs.default.scripts]
 fix = "ruff check --fix src tests"
 lint = "ruff check src tests"
