1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
From: Kathara Sasikumar <katharasasikumar007@gmail.com>
Date: Fri, 30 Aug 2024 15:49:06 +0530
Subject: tests: Ignore coverage configuration
Forwarded: not-needed
---
setup.cfg | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/setup.cfg b/setup.cfg
index ba0b39d..f4457a6 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,9 +4,9 @@ ignore_missing_imports = True
[tool:pytest]
asyncio_mode = strict
-addopts =
- -rxXs
- --cov=src
- --cov=tests
- --cov-report=term-missing
- --cov-fail-under=100
+#addopts =
+# -rxXs
+# --cov=src
+# --cov=tests
+# --cov-report=term-missing
+# --cov-fail-under=100
|