Exclude gRPC, tests and mocks from coverage reports

This commit is contained in:
Reckless_Satoshi 2023-11-08 14:43:00 +00:00 committed by Reckless_Satoshi
parent 4efc59d416
commit 68b1186277

View File

@ -1,2 +1,11 @@
[tool.isort]
profile = "black"
[tool.coverage.run]
omit = [
# omit grpc proto from coverage reports
"api/lightning/*pb2*",
# omit test and mocks from coverage reports
"tests/*",
"*mocks*",
]