We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pyproject.toml
1 parent d7298ec commit 96e6b99Copy full SHA for 96e6b99
pyproject.toml
@@ -49,6 +49,28 @@ dev = [
49
"setuptools>=80.9.0",
50
"stopit<1.2",
51
]
52
+
53
54
+[tool.coverage.run]
55
+branch = false
56
+omit = [
57
+ "tests/*",
58
+]
59
+source = [ "src" ]
60
61
+[tool.coverage.report]
62
+fail_under = 0
63
+show_missing = true
64
+exclude_lines = [
65
+ "# pragma: no cover",
66
+ "raise NotImplemented",
67
68
69
+ "*/.buildout/eggs/*",
70
+ "buildout-cache/eggs/*",
71
+ "eggs/*",
72
+ "parts/*",
73
+ "src/crate/client/_pep440.py",
74
75
76
0 commit comments