Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
get and enforce 100% coverage #3159
get and enforce 100% coverage #3159
Changes from 33 commits
2aa5771
8501b0c
be08460
2722418
8858398
e5fa8cd
340373d
d436b06
0ac717d
1398349
34d6399
818094a
3dac42d
dda9a27
bd81624
640f581
50d848d
28ee44a
ac30b6b
f312a70
badc910
a57247a
5344e71
8f05dbf
1ec824c
a0f33ee
cc4b217
24917b7
68de044
95b1f75
becdf2a
3f34731
bd097dd
dcfe01a
431f2ed
117fe04
84de11a
2484749
d055b38
afa13f5
e78f317
d962e05
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
FTR with #3162, there's going to be a need to split the checks into MyPy vs. pytest.
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.
Consider integrating the
covdefaults
plugin, as it injects most of these automatically. The only thing you'd need to override additionally is thefail_under
setting, which it sets to 100%, but it's not compatible with runtime-dependent tests that cannot reach 100% under one specific runtime. So it's good to set it to something sufficiently low while requiring 100% in Codecov.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.
ah nice, I'll do that in a followup