官方实例
# content of test_xfail.py
import pytest
import sys
@pytest.mark.xfail
def test_function():
print("test_function was invoked.")
def valid_config():
return False
def test_function_02():
if not valid_config():
pytest.xfail("failing configuration (but should work)")
解读与实操
你可以使用xfail标记来表示你希望测试失败。
测试将运行,但失败时不会报告回溯。相反,终端报告将会在“预期失败(XFAIL)或”意外通过“(XPASS)部分中列出来,或者,你也可以在测试或其它setup函数中强制将测试标记为XFAIL。
场景应用
使用reason参数,标记失败原因。查看测试报告时将更直观。