-
Notifications
You must be signed in to change notification settings - Fork 33
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
codecov, fix: Fix the ignoring path regex pattern in codecov.yaml (#175) #221
Conversation
Codecov Report
@@ Coverage Diff @@
## main #221 +/- ##
==========================================
+ Coverage 52.40% 61.88% +9.47%
==========================================
Files 34 33 -1
Lines 3631 3112 -519
==========================================
+ Hits 1903 1926 +23
+ Misses 1532 994 -538
+ Partials 196 192 -4
Flags with carried forward coverage won't be shown. Click here to find out 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.
Looks to be working ! 👍
Is the PR ready for review ? 🤔
Yes, please! It is now ready! @KevFan |
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.
Looks good to me ! 🥇
@@ -11,9 +11,10 @@ codecov: | |||
comment: | |||
layout: "header, diff, flags, components, files" | |||
|
|||
# Find more at https://docs.codecov.com/docs/ignoring-paths | |||
ignore: | |||
- api/external/** # ignoring external vendor code |
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.
how is this line not affected?
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.
Sorry, DD. I was thinking about providing the direct link to the documentation, but now I am thinking that the link is prone to change. You are right, it was a useless comment 💯
This PR introduces a fix to path ignoring regexp pattern in codecov.yaml.
The codecov.yaml was invalid because of missing double quotes in
"**/*.deepcopy.go"
path.This PR is a part of #175, which just introduces a fix to a path for codecov.yaml so it can work correctly and be applied to the codecov configuration.
Read more at: https://docs.codecov.com/docs/ignoring-paths