24、pytest通过xfail将测试函数标记为预期失败

官方实例

python 复制代码
# 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参数,标记失败原因。查看测试报告时将更直观。

相关推荐
开源优测1 小时前
使用Pytest Fixtures来提升TestCase的可读性、高效性
pytest
撸码到无法自拔15 小时前
python接口测试:2.8 Pytest之pytest-html报告生成
开发语言·python·pytest
唐古乌梁海1 天前
【Pytest】生成html报告中,中文乱码问题解决方案
pytest
开源优测2 天前
深入理解Pytest中的Setup和Teardown
pytest
莲动渔舟2 天前
pytest自动化测试 - pytest夹具的基本概念
pytest
测试19983 天前
Pytest+Allure+Excel接口自动化测试框架实战
自动化测试·软件测试·python·测试工具·职场和发展·excel·pytest
可遇_不可求4 天前
Pytest插件介绍:pytest-django
django·sqlite·pytest
城下秋草7 天前
pytest+playwright落地实战大纲
自动化测试·pytest·测试·playwright
卜及中7 天前
【Pytest】基础到高级功能的理解使用
开发语言·python·学习·pytest·python3.11