Skip to content

Commit a30295d

Browse files
committed
Updating coveragerc omit section for namespace collisions.
In particular, omitting "google.cloud.logging.v2" and "google.cloud.pubsub.v1" since they are in our "google.cloud" namespace package but are not owned by us.
1 parent 2c05a38 commit a30295d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.coveragerc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[run]
22
branch = True
33

4-
[report]
5-
fail_under = 100
6-
show_missing = True
7-
84
[report]
95
omit =
106
*/_generated/*.py
7+
# Packages in the "google.cloud" package that we don't own.
8+
*/google/cloud/logging/v2/*
9+
*/google/cloud/pubsub/v1/*
10+
fail_under = 100
1111
show_missing = True
1212
exclude_lines =
1313
# Re-enable the standard pragma

0 commit comments

Comments
 (0)