-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prevent coverage break #16887
Prevent coverage break #16887
Conversation
There are repeated failures of our CI due to an intermittent issue with coverage.out finishing with a spurious `0` on a single line. This problem is very annoying and very hard to understand where it is coming from, therefore as the problem appears random and without clear cause we should just strip this line from our coverage. Signed-off-by: Andrew Thornton <art27@cantab.net>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
🚀 |
Codecov Report
@@ Coverage Diff @@
## main #16887 +/- ##
=======================================
Coverage 45.46% 45.46%
=======================================
Files 762 762
Lines 86104 86116 +12
=======================================
+ Hits 39150 39156 +6
- Misses 40642 40650 +8
+ Partials 6312 6310 -2
Continue to review full report at Codecov.
|
There are repeated failures of our CI due to an intermittent issue with coverage.out
finishing with a spurious
0
on a single line.This problem is very annoying and very hard to understand where it is coming from,
therefore as the problem appears random and without clear cause we should just strip
this line from our coverage.
These bugs are occurring due to the change to use the race detector - presumably there is some race occurring in the coverage output.
Related #1441
Signed-off-by: Andrew Thornton art27@cantab.net