Skip to content

Commit f203501

Browse files
authored
tests: require 100% coverage again (#345)
Closes #335.
1 parent 90f3010 commit f203501

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/google-cloud-bigtable/.coveragerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ omit =
2121
google/cloud/__init__.py
2222

2323
[report]
24-
fail_under = 99
24+
fail_under = 100
2525
show_missing = True
2626
exclude_lines =
2727
# Re-enable the standard pragma

packages/google-cloud-bigtable/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def cover(session):
198198
test runs (not system test runs), and then erases coverage data.
199199
"""
200200
session.install("coverage", "pytest-cov")
201-
session.run("coverage", "report", "--show-missing", "--fail-under=99")
201+
session.run("coverage", "report", "--show-missing", "--fail-under=100")
202202

203203
session.run("coverage", "erase")
204204

0 commit comments

Comments
 (0)