-
Notifications
You must be signed in to change notification settings - Fork 506
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
fix: broken quiet mode in main branch (#1587) #1648
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1648 +/- ##
==========================================
+ Coverage 78.39% 80.67% +2.27%
==========================================
Files 291 291
Lines 6027 6027
Branches 989 989
==========================================
+ Hits 4725 4862 +137
+ Misses 1086 955 -131
+ Partials 216 210 -6
Flags with carried forward coverage won't be shown. Click here to find out more.
📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more |
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.
Hah, good eye. I'm kind of surprised we didn't see this more often, but I guess since we try to pre-populate the db it just wasn't always doing an update during that test.
Oh nice, I looked into this issue awhile back and couldn't solve it. I have a quick question: I thought quiet mode sets the value of error_mode to Also, since lines 323-331 have the same logic, may I apply this fix to that as well? @terriko |
|
Co-authored-by: b31ngd3v <b31ngd3v@gmail.com>
I suspect all of this code needs a refactor so we're using log levels to determine output all the way through if we can instead of having error_mode at all, but I haven't had time to look at it all and see what would be the right solution. If someone else wants to tackle it, go ahead and start an issue to discuss ideas. |
closes #1587