pytest 之 mark 用法汇总
程序员文章站
2024-02-27 14:41:27
...
最近学习到的pytest mark相关用法在此记录一下:
mark作为一个pytest中的装饰器,功能丰富,
@pytest.mark.skip() #跳过此函数
def test_func01():
pass
@pytest.mark.skipif( False==True)#符合条件则跳过次函数
def test_func02():
pass
@pytest.mark.parametrize(a,[1,2,3,4])
@pytest.mark.parametrize(b,[1,2,3,4]) #传参数,如果有多个参数,每种参数组合执行
def test_func03(a,b):
print("a+b=",a+b)
@pytest.mark.usefixture(test_func04)
#结合pytest.fixture()学习,fixture设置pytest执行时的作用范围,pytest.fixtrue()有返回值,pytest.mark.usefixture()无返回值
ps:没怎么用到后续补充
def test_func04():
print("已执行")
@pytest.mark.xfail() #标记预期会失败的用例,即期望测试用例是失败的,但是不会影响测试用例的的执行。
def test_func05():
assert 1==2