当前位置:网站首页>pytest 之 allure报告

pytest 之 allure报告

2022-08-09 13:06:00 沉觞流年

Allure Framework 是一种灵活的轻量级多语言测试报告工具,不仅可以以简洁的Web报告形式非常简洁地显示已测试的内容,而且还允许参与开发过程的每个人从日常执行中提取最大程度的有用信息。测试

allure文档链接

左侧给出了 allure 报告支持的语言和框架,点击对应的链接可了解相应的使用方法
在这里插入图片描述

安装allure

文档开头,给出了三种不同的操作系统的安装方式
在这里插入图片描述
还有通用方法,三种操作系统都可以通过该种方式进行安装
在这里插入图片描述

这里介绍的是采用通用方法在 Windows 下安装 allure

1、下载 allure.zip

点击文档上的链接,注意,要把请求方式换成 https链接
选择最新的包下载
在这里插入图片描述

选择 zip 格式
在这里插入图片描述

这里也提供了github下载链接

2、解压到本地目录后配置环境变量

下载完成后,将文件进行解压,存放路径看个人,怎么方便怎么来
解压完成后,bin 目录下有两个文件,就是用来启动allure测试报告用的,Windows 下点击bat文件即可
在这里插入图片描述
为了能在命令行输入命令进行使用,需要配置allure.bat的环境变量
在这里插入图片描述
在命令行中运行allure,确认环境变量配置成功。
使用快捷键Win + R,输入 cmd ,打开黑屏终端,,输入命令 allure ,可以看到各种选项,说明环境变量配置成功

与 pytest 集成

pytest 集成,需要 pytest 执行用例后,生成 allure 能够解析的测试结果文件

1、安装 allure-pytest 插件

使用命令安装 allure-pytest 插件

pip install allure-pytest

2、生成 allure 报告

1. 通过命令生成 allure 能够解析的测试结果文件

pytest --alluredir=/tmp/my_allure_results

/tmp/my_allure_results 为测试报告文件所在路径

该命令的参数可以和运行测试用例的参数一起执行

这里就不通过命令行的方式生成对应的文件,而是通过 run.py 的方式执行
run.py

import pytest

pytest.main(["-s","-v","-m","demo","--html=Outputs/reports/report.html","--reruns","2","--reruns-delay","5","--alluredir=Outputs/allure_reports"])

运行 run.py 文件后,可以看到,allure_reports 目录下生成了一堆测试结果文件,里面记录的都是关于测试用例的执行情况
在这里插入图片描述

可以优化一下,按日期生成文件

import pytest
from Common import logger


html_report = "Outputs/reports/report_{}_test.html".format(logger.curTime)
allure_report_dir = "Outputs/reports/allure_report_{}".format(logger.curTime)

pytest.main(["-s","-v","-m","demo","--html={}".format(html_report),"--reruns","2","--reruns-delay","5","--alluredir={}".format(allure_report_dir)])

2. 生成 allure 测试报告
进入项目根目录下,输入命令

allure serve /tmp/my_allure_results

这里测试报告文件所在路径为 Outputs/allure_reports,所以我的命令为

allure serve Outputs/allure_reports

在这里插入图片描述
生成成功后,如果没有自动弹出测试报告,可以点击链接,打开测试报告文件
在这里插入图片描述
allure测试报告就生成成功了

原网站

版权声明
本文为[沉觞流年]所创,转载请带上原文链接,感谢
https://blog.csdn.net/qq_44614026/article/details/114793946