Skip to content

Commit 450c39a

Browse files
committed
Changed the failure leeway of the code coverage test percentage from 0.005% back to 0.02%.
- Legacy-Id: 12707
1 parent 93b1ba1 commit 450c39a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/utils/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def report_test_result(self, test):
256256
# only running some tests, then of course the coverage is going to be low.
257257
if self.runner.run_full_test_suite:
258258
# Permit 0.02% variation in results -- otherwise small code changes become a pain
259-
fudge_factor = 0.00005 # 0.005% -- a small change, less than the last digit we show
259+
fudge_factor = 0.0002
260260
self.assertGreaterEqual(test_coverage, master_coverage - fudge_factor,
261261
msg = "The %s coverage percentage is now lower (%.2f%%) than for version %s (%.2f%%)" %
262262
( test, test_coverage*100, latest_coverage_version, master_coverage*100, ))

0 commit comments

Comments
 (0)