1、前言
在pytest
中常用的测试报告生成方法有两种,一种是通过pytest-html
插件来完成,另一种通过Allure
框架来实现。
2、pytest-html生成测试报告
(1)pytest-html插件安装
pip install pytest-html
(2)pytest-html的使用
- 命令行执行:
pytest -s -v xxx.py --html=./report/report.html
main()
函数执行:pytest.main(['-vs','--html=./report/report.html'])
- 全局配置:
- 在
pytest.ini
的addopts
属性后面添加--html=../report/report.html
- 在
(3)报告独立显示
在(2)中的执行方法生成的报告,css是独立的,分享报告的时候样式会丢失,为了更好的分享测试报告,可以通过添加 --self-contained-html
参数将css样式合并到html里。pytest -v -s xxx.py --html=./report/report.html --self-contained-html
3、Allure框架生成测试报告
(1)说明
Allure
框架生成的报告相比pytest-html
更加完美,推荐使用Allure
框架来生成测试报告。Allure
是一个Report
框架,是灵活,轻量级,支持多语言的测试报告工具,还可以集成到Jenkins
上。
(2)环境准备
步骤1:安装Allure框架
【windows】下:
1)解压下载的框架文件,放到自己指定的目录中
2)把框架的bin
目录加入到Path
环境变量中
3)验证框架是否安装成功,命令allure --version
【mac】下:
1)确定解压下载的框架文件,放到自己指定的目录中
2)添加环境变量:
查看mac系统版本,我的mac版本是Bigsur
,可以通过sudo nano ~/.zshrc
进行配置Apple
官方说明:
PATH="/Users/qishuai/allure-2.19.0/bin:${PATH}"
export PATH`
3)验证框架是否安装成功,命令:allure --version
,正常出现版本号即为安装成功,但我的出现了如下提示,需要安装jdk
mac安装jdk参考:https://www.jianshu.com/p/199cd1abd570
安装jdk完毕后,再次验证框架是否安装成功
步骤2:下载allure_pytest库pip install allure-pytest
至此,Allure
的环境准备工作就完毕了。
(3)执行测试并生成测试报告
步骤1:执行并指定测试数据存放位置
- 命令行执行:
- 在命令行中增加
--alluredir ../report/temp_report_data
- 可以加上
--clean-alluredir
清除上一次的测试报告数据 - eg:
pytest -s -v ./xxx.py --alluredir ../report/temp_report_data --clean-alluredir
- 在命令行中增加
- 全局配置文件:
- 在
pytest.ini
文件的addopts
中添加--alluredir ../report/temp_report_data
- eg:
addopts = -s -v --alluredir ../report/temp_report_data
- 在
main
函数执行:pytest.main(['-v','-s','--allured','../report/temp_report_data'])
注意:不指定的话会自动在当前目录创建一个allure_report目录
步骤2:根据测试数据生成html报告
通过allure
框架把json
格式的测试数据转换为测试报告
方法1:生成报告文件allure generate ./report/temp_report_data -o ./report/html --clean
命令解释:
allure generate
:生成命令./report/temp_report_data
:存放测试数据的目录-o
:输出./report/html
:存放生成html报告的路径--clean
:清空./report/html
路径目录中原来的测试报告
补充:可通过命令创建
web
服务打开创建的报告文件allure open -h 127.0.0.1 -p 5555 ./report/html
方法2:直接启动web服务打开报告(不生成报告文件)
在上面方法1中生成html
测试报告还要手动打开或输入命令创建web
服务打开,我们还可以在生成测试数据之后直接用allure serve .report/temp_report_data
命令创建一个web
服务,自动在浏览器中打开测试报告
参考
https://developer.aliyun.com/article/948360
https://www.cnblogs.com/qican/p/14573869.html
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Pytest框架 — 16、Pytest的测试报告(pytest-html插件和Allure框架) - Python技术站