-
Notifications
You must be signed in to change notification settings - Fork 202
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
print potential errors after running a command only once #4065
Conversation
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
@smoors Could you merge those as the only failing checks are the now-removed bootstrap tests? Or shall I rebase to rerun the CI? |
i cannot merge before all tests are green. |
`parse_cmd_output` calls `parse_log_for_error` which outputs potential errors by default via `log.info`. The former then outputs those via `log.warning` again. Fix this by passing `stdout=False` to the latter. Also minor rewording and variable renaming.
They will fail. I rebased. |
Going in, thanks @Flamefire! |
parse_cmd_output
callsparse_log_for_error
which outputs potentialerrors by default via
log.info
.The former then outputs those via
log.warning
again.Fix this by passing
stdout=False
to the latter.Also minor rewording and variable renaming.