-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Run codespell on code #16651
Run codespell on code #16651
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: rhatdan The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
test/system/015-help.bats
Outdated
@@ -136,7 +136,7 @@ function check_help() { | |||
run_podman '?' "$@" $cmd </dev/null | |||
is "$status" 125 \ | |||
"'$usage' indicates at least one required arg. I invoked it with no args and expected an error exit code" | |||
is "$output" "Error:.* \(require\|specif\|must\|provide\|need\|choose\|accepts\)" \ | |||
is "$output" "Error:.* \(require\|specify\|must\|provide\|need\|choose\|accepts\)" \ |
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.
This one needs to revert: error messages can be "specify", "specified", or other possibilities.
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.
/me thinks you forgot to revert this. Tests are gonna fail again.
If you run these so often I wonder why do we not put this into a CI check? |
My guess is, because the false-positive rate is too high. I suspect Dan only commits one out of every 4-5 "errors" reported by the spellcheck tool. |
No over time it has gotten much better. so we might want to do it automatically. |
This runs with a clean |
Signed-off-by: Daniel J Walsh <[email protected]>
/lgtm |
Signed-off-by: Daniel J Walsh [email protected]
Does this PR introduce a user-facing change?