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.
1 parent afcb46a commit 12aaa73Copy full SHA for 12aaa73
.coveragerc
pyproject.toml
@@ -78,6 +78,30 @@ testpaths = [
78
"tests",
79
]
80
81
+[tool.coverage.run]
82
+branch = true
83
+source = [
84
+ "http_app",
85
+ "grpc_app",
86
+ "domains",
87
+ "gateways",
88
+ "celery_worker",
89
+ "common",
90
+]
91
+omit = [
92
+ "grpc_app/generated/*",
93
+ "common/config.py",
94
95
+concurrency = ["multiprocessing"]
96
+parallel = true
97
+
98
+[tool.coverage.report]
99
+exclude_also = [
100
+ "pragma: no cover",
101
+ "pass",
102
+ "\\.\\.\\.",
103
+ ]
104
105
[tool.mypy]
106
files = [
107
"domains",
0 commit comments