-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 All Deep Source Shell Issues and Go Issues #8661
Conversation
echo "Issue referenced has already been closed" >&2; | ||
echo "Issue Number: $issueNum" >&2; | ||
exit 1; | ||
fi | ||
done < <(grep -PrinH -o -h '(?<!context\.)todo\(#{0,1}\K(\d+)' --include \*.go *) | ||
done < <(grep -PrinH -o -h '(?<!context\.)todo\(#{0,1}\K(\d+)' --include ./*.go) |
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.
Will this cover all go files (or should it be ./**/*.go
instead)?
@@ -1,24 +1,23 @@ | |||
#!/bin/bash | |||
|
|||
# Continuous integration script to check that TODOs are in the correct format | |||
OUTPUT="$(grep -PrinH '(?<!context\.)todo(?!\(#{0,1}\d+\))' --include \*.go --exclude *site_data.go --exclude *mainnet_config.go *)"; | |||
OUTPUT="$(grep -PrinH '(?<!context\.)todo(?!\(#{0,1}\d+\))' --include ./**/*.go --exclude ./*site_data.go --exclude ./*mainnet_config.go)"; |
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.
Again, will ./*site_data.go
match all those items that *site_data.go
covers?
Codecov Report
@@ Coverage Diff @@
## develop #8661 +/- ##
===========================================
+ Coverage 61.22% 61.24% +0.02%
===========================================
Files 494 494
Lines 34345 34343 -2
===========================================
+ Hits 21027 21035 +8
+ Misses 10177 10170 -7
+ Partials 3141 3138 -3 |
This PR resolves all pending deep source issues for shell scripts, which make all PRs that are targeting the non-default branch red