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