如何修复AttributeError:pytest模块中'module'对象没有属性'config'

时间:2019-09-08 16:27:25

标签: python python-2.7 pytest

问题:-我无法在测试用例中加载pytest.config对象。这表明config不是pytest模块中的对象(在编译时本身)。

AttributeError: 'module' object has no attribute 'config'

pytest.config对象中有某些配置参数(用实用程序脚本编写),这些参数需要由不同的测试用例使用。

背景:-我们基本上是将旧的测试框架迁移到新的测试框架。在此迁移项目中,我们必须使用设置为pytest.config对象的插件对象(我是pytest框架的新手)。

 search = pytest.config.deployment_object

我无法从pytest.config对象获取deploy_object

0 个答案:

没有答案