Skip to content

Commit

Permalink
ci: merge main to release
Browse files Browse the repository at this point in the history
ci: merge main to release
  • Loading branch information
rjsparks authored Nov 16, 2023
2 parents aee3c6c + 5cea620 commit 0cdefa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ietf/utils/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,8 +511,8 @@ def report_test_result(self, test):
# Assert coverage failure only if we're running the full test suite -- if we're
# only running some tests, then of course the coverage is going to be low.
if self.runner.run_full_test_suite:
# Permit 0.02% variation in results -- otherwise small code changes become a pain
fudge_factor = 0.0002
# Permit a small variation in results -- otherwise small code changes become a pain
fudge_factor = 0.0004
self.assertLessEqual(len(test_missing), len(master_missing),
msg = "New %s without test coverage since %s: %s" % (test, latest_coverage_version, list(set(test_missing) - set(master_missing))))
if not self.runner.ignore_lower_coverage:
Expand Down

0 comments on commit 0cdefa0

Please sign in to comment.