@pytest.mark.skipif
作者:互联网
目录
官网文档
有条件的跳过用例
import pytest
@pytest.mark.skipif(1<2,reason="2大于1") # 条件满足跳过/否则执行
def test_function(self):
assert 1
可以在模块之间共享模块
# content of test_mymodule.py
import mymodule
minversion = pytest.mark.skipif(
mymodule.__versioninfo__ < (1, 1), reason="at least mymodule-1.1 required"
)
@minversion
def test_function():
...
- 您可以导入标记并在另一个测试模块中重用它:
# test_myothermodule.py
from test_mymodule import minversion
@minversion
def test_anotherfunction():
...
对于较大的测试套件,最好有一个文件来定义标记,然后在整个测试套件中始终如一地应用这些标记。
或者,您可以使用条件字符串代替布尔值,但它们不能在模块之间轻松共享,因此主要出于向后兼容性的原因支持它们。
标签:skipif,mark,pytest,模块,test,mymodule,minversion 来源: https://www.cnblogs.com/py-zhq/p/16423934.html