Mypy failures are silenced. #5850
Labels
area-linting
bug
Issue identified by VS Code Team member as probable bug
needs PR
Ready to be worked on
When mypy fails (e.g. when .py filename contains illegal characters) the extension acts as though nothing bad happened and as though the checked files are free of problems (even if there are some). It shouldn't be failing silently.
To reproduce:
If you set
"python.linting.mypyPath": "/bin/echo"
then you'll see (in the Output pane) exactly how the extension invokes mypy. Invoking it manually using those args will show the failure output from mypy. That's what we should be showing normally rather than hiding it.So here's what should probably be done:
The text was updated successfully, but these errors were encountered: