5

使用以下代码:

import pytest
def test_a():
    with pytest.raises(Exception):
        1/0

如果我在上面运行 pylint,它会抱怨“raises”不是模块 pytest 的成员:

E:  3,9:test_a: Module 'pytest' has no 'raises' member

这显然不是真的。知道为什么 pylint 会犯这样的错误吗?这是一个已知的错误?

py.test 版本:

> py.test --version
This is py.test version 2.2.3, imported from C:\Python27\lib\site-packages\pytest.pyc

PyLint 版本:

> pylint --version
No config file found, using default configuration
pylint 0.25.1,
astng 0.23.1, common 0.57.1
Python 2.7.2 (default, Jun 24 2011, 12:22:14) [MSC v.1500 64 bit (AMD64)]
4

2 回答 2

3

您可以在 pylintrc 文件中使用以下命令将其静音: ignored-classes=pytest

于 2014-02-04T17:43:33.240 回答
2

上次我查看 pylib 在低级 python 中做了一些重动态,例如完全重新定义导入代码。这很可能完全困扰 pylint/astng,并阻止它获取 pytest 模块中的内容:pylint/astng 不会导入它分析的代码,而是解析它,这意味着在导入时动态初始化的东西将通常会被忽视,这反过来会产生误报,例如您报告的误报。

从那里开始,您将面临以下选择:

  • 使用另一个 unittest 框架,比 py.test 动态性低
  • 手动消除测试代码上的警告/错误
  • 在 py.test 上使用另一个比 pylint 更快乐的 linter(我很想知道 pychecker / pyflakes 在该代码上的表现如何)
  • 编写 astng 插件,它将帮助 astng grok pylib 技巧并将其作为补丁提交给 astng 维护者(并从中获得额外的功劳)
于 2012-05-18T10:20:24.520 回答