-
Notifications
You must be signed in to change notification settings - Fork 393
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
test(fuzz): appease goimports by renaming added .go corpus files to *go_fuzz #3602
test(fuzz): appease goimports by renaming added .go corpus files to *go_fuzz #3602
Conversation
….go_fuzz goimports doesn't provide an ignore pattern except by reading the $GOPATH/.goimportsignore which would be too cumbersome and non-standard to muck around with so instead this change modifies testdata/corpra/*.go to testdata/corpora/*.go_fuzz so that goimports won't throw a fit against CI/CD for this project. Fixes gnolang#3601
🛠 PR Checks SummaryAll Automated Checks passed. ✅ Manual Checks (for Reviewers):
Read More🤖 This bot helps streamline PR reviews by verifying automated checks and providing guidance for contributors and reviewers. ✅ Automated Checks (for Contributors):🟢 Maintainers must be able to edit this pull request (more info) ☑️ Contributor Actions:
☑️ Reviewer Actions:
📚 Resources:Debug
|
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.
LGTM
Thank you @n2p5 |
goimports doesn't provide an ignore pattern except by reading the $GOPATH/.goimportsignore which would be too cumbersome and non-standard to muck around with so instead this change modifies testdata/corpra/.go to testdata/corpora/.go_fuzz so that goimports won't throw a fit against CI/CD for this project.
Fixes #3601