我正在尝试学习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
的功能?我什至没有导入声明。