pytest中钩子函数的使用

收集测试结果:

2. pytest_terminal_summary(terminalreporter, exitstatus,config)

在测试执行完毕后,用于生成并显示最终的测试摘要信息到终端,你可以实现自定义的测试报告汇总和显示。

例如:你可以在此钩子函数中计算测试用例覆盖率、输出额外的统计信息

在conftest.py文件中使用,所有的测试用例执行完成后,自动收集测试结果

python 复制代码
def pytest_terminal_summary(terminalreporter, exitstatus, config):
    """
    函数:pytest钩子函数,固定写法,每次pytest测试完成后,会自动收集测试结果
    :param terminalreporter:内部终端报告对象,对象的status属性
    :param exitstatus:返回给操作系统的返回码
    :param config:pytest配置的config对象
    :return:
    """
    # 打印执行结果
    result = terminalreporter.stats
    # 获取测试用例总数
    case_all_num = terminalreporter._numcollected
    if case_all_num > 0:
        # 获取成功的用例数
        case_pass_num = len(terminalreporter.stats.get('passed', []))
        # 获取失败的用例数
        case_failed_num = len(terminalreporter.stats.get('failed', []))
        # 获取错误的用例数
        case_error_num = len(terminalreporter.stats.get('error', []))
        # 获取跳过的用例数
        case_skipped_num = len(terminalreporter.stats.get('skipped', []))
        # 获取执行时长
        # round: 四设五入保留小数位数
        run_time = round(time.time() - terminalreporter._sessionstarttime, 2)
        formt_run_time = format_datatime(run_time)
        # 统计测试用例-通过率
        tgl_str = None
        if case_all_num > 0:
            tgl = int(case_pass_num) / int(case_all_num)
            tgl_str = "{:.2%}".format(tgl)

        # 测试结果写入txt文档
        result = os.path.join("./report", "result.txt")

        # 写入测试结果到reports下的result.txt文件
        with open(result, "w") as f:
            f.write(f"本次接口自动化测试结果如下(请注意失败及错误的接口):\n")
            f.write(f"用例总数:{case_all_num}个\n")
            f.write(f"通过数:{case_pass_num}个\n")
            f.write(f"失败数:{case_failed_num}个\n")
            f.write(f"跳过数:{case_skipped_num}个\n")
            f.write(f"错误数:{case_error_num}个\n")
            f.write(f"成功率:{tgl_str}个\n")
            f.write(f"用例执行时长:{run_time}秒 ({formt_run_time})")

        summary = str()
        with open(result, 'r') as f:
            for i in f.readlines():
                summary = f'{summary}' + i
        mylog.info(summary)

参考博文:

pytest合集(9)--- Hook钩子函数_pytest钩子函数-CSDN博客

相关推荐
MJH82712 小时前
Selenium + Pytest自动化测试框架实战!
selenium·测试工具·jmeter·职场和发展·pytest·postman
大G哥20 小时前
pytest自动化测试数据驱动yaml/excel/csv/json
json·excel·pytest
测试杂货铺2 天前
UI自动化测试实战实例
自动化测试·软件测试·python·selenium·测试工具·测试用例·pytest
开源优测2 天前
深入解析 Pytest 钩子函数及二次开发过程
pytest
开源优测3 天前
深度解析 Pytest 中的 conftest.py
pytest
天天要nx3 天前
D105【python 接口自动化学习】- pytest进阶参数化用法
python·pytest
天天要nx5 天前
D102【python 接口自动化学习】- pytest进阶之fixture用法
python·pytest
程序猿000001号5 天前
探索Python的pytest库:简化单元测试的艺术
python·单元测试·pytest
爱学测试的雨果6 天前
分布式测试插件 pytest-xdist 使用详解
分布式·pytest