diff --git a/pyproject.toml b/pyproject.toml index 5d7bf33d..5f9674fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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*", + ] \ No newline at end of file