pytest在安装pytest-ordering模块后给出错误

时间:2018-12-13 18:37:31

标签: python-3.x pytest

我正在尝试学习pytest并编写一个非常简单的代码,而无需使用夹具开始:

import pytest

def test_methodA():
    print ("hello")

在终端中,当我执行-

py.test -v -s. 

它可以正常工作,但是在安装pytest-ordering之后,会显示错误消息:

"AttributeError: 'Function' object has no attribute 'get_closest_marker'"

安装模块后是否必须使用pytest-ordering的功能?我什至没有导入声明。

0 个答案:

没有答案