Can PyCharm list all of Python errors in a project?

PythonPython 2.7Compiler ErrorsPycharm

Python Problem Overview


I use python 2.7 in a virtual environment and PyCharm 2.7 (new build as of feb 07 2013).

Whenever I open a python file in it that has unambiguous errors (equivalent to compile errors in other languages, e.g. using undeclared variables, calling non-existing functions), it shows red stripes in the gutter of the file.

So, I discover errors randomly as I happened to navigate to a file that contains them. What I would really like is to be able to list all of the python errors in a separate window. The Visual Studio 2005/2008/2010/... IDE has a separate "Errors" view that lists all of them with file names and line numbers, and gives me the ability to click on any one of these errors and navigate directly to the source.

Does PyCharm have anything like this?

Python Solutions


Solution 1 - Python

You can call Code|Inspect Code (formerly Analyze|Inspect Code, thanks to @CrackerJack9) to get all errors and warnings and ways to fix them. In result panel you can choose to see only errors (red/yellow button at the left side).

Solution 2 - Python

In Pycharm 2.6.3:
Code -> Inspect Code

Solution 3 - Python

Yes, run Analyze|Inspect Code and specify Whole project as the scope of analysis.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionHamish GrubijanView Question on Stackoverflow
Solution 1 - PythonVladimirView Answer on Stackoverflow
Solution 2 - PythonforwardView Answer on Stackoverflow
Solution 3 - PythonAndrey VlasovskikhView Answer on Stackoverflow