We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Bug Report Unwanted output on success. However I need to be able to capture both error message and any script output on failure.
To Reproduce
mypy script.py
Expected Behavior return empty string and status 0
Actual Behavior returned "Positive" string "Success: no issues found in 1 source file"
Your Environment
Suggestion You can use something like 'mypy --cicd script.py' to switch between "positive" and useful mode.
The text was updated successfully, but these errors were encountered:
Why can't you rely on the exit status 0 for determining whether mypy was successful? What is the concrete problem here?
Sorry, something went wrong.
The concrete problem is that OP is rather rude. If OP read the docs they'd know there's a flag to remove the summary message.
So --no-error-summary is quiet mode? Ok... thank you
No branches or pull requests
Bug Report
Unwanted output on success. However I need to be able to capture both error message and any script output on failure.
To Reproduce
mypy script.py
Expected Behavior
return empty string and status 0
Actual Behavior
returned "Positive" string "Success: no issues found in 1 source file"
Your Environment
Suggestion
You can use something like 'mypy --cicd script.py' to switch between "positive" and useful mode.
The text was updated successfully, but these errors were encountered: