Pycharm在检查结果中不显示错误

时间:2016-12-29 16:59:26

标签: pycharm

我有几个文件中有python错误(未解析的引用,如果这很重要),所以我运行了Inspect代码以获取所有错误的列表。不幸的是,看起来他们没有出现:

inspection results

错误确实存在,因为当我打开一个包含错误的python文件时,它们会显示出来:

file error analysis example

我错过了一些隐藏的选项,还是这个错误?

1 个答案:

答案 0 :(得分:0)

理论上,您的默认设置code inspectioncurrent file analysis应该使用相同的inspection profile

对于current file analysis,您可以点击ctrl+alt+Shift+H并点击Configure inspections链接来查看个人资料。

enter image description here

对于code inspection,您从Inspect Code菜单元素中选择Code后设置了个人资料。

enter image description here

我的观察

更改current file analysis的检查规则后,我发现Severity没有任何影响。我试图重启IDE,但没有任何帮助。 看起来像个bug。

但是,如果我使用复选框打开/关闭规则,则会在current file analysiscode inspection上进行更改(它们在相同的检查配置文件中运行)。没关系,所以问题只在于严重性。

enter image description here

好消息是更改检验规则适用于code inspection。您可以尝试将code inspection设为与current file analysis类似(但反之亦然,这是一个错误)。

enter image description here

请注意,默认情况下,未解析的引用只是警告,因此code inspection效果很好。

PS我的IDE版本是2016.3.2。