(1)pytest-html
插件
Pytest可以通过命令⾏⽅式,⽣成xml/html
格式的测试报告,并存储于⽤户指定路径。
需要用到pytest-html
插件。
安装⽅式:pip install pytest-html
插件使用方式:
命令格式:--html=⽤户路径/report.html
运⾏⽅式:
-
main()函数方式:
pytest.main(['--html=./report/report_01.html'])
(不好使,可能配置了pytest.ini
文件) -
命令行方式:
在report目录中生成
report.html
测试报告。pytest ./pytest_demo/test_pytest_01.py --html=./report/report.html
-
使用
pytest.ini
文件方式:在
addopts
属性后追加--html
参数配置,在report目录中生成report.html
测试报告。addopts = -s --html=../report/report.html
执⾏结果:
在指定⽬录中会⽣成assets
⽂件夹(css文件)和report.html
⽂件
提示:若要⽣成xml⽂件,可将
--html=./report.html
改成--junitxml= report/report.xml
(2)Allure测试报告
1)Allure框架说明:
Allure生成的测试报告与上面pytest-html
插件生成的测试报告对比,简直完美!
Allure是一个Report框架,是一种灵活的轻量级,支持多语言的测试报告工具,它不仅能够以简洁的web报告形式显示已测试的内容,并带有失败用例截图、测试步骤和测试说明信息,也可以集成到Jenkins上展示高大上的报告界面。
而且允许参与开发过程的每个人从测试的日常执行中提取最大限度的有用信息。
Allure框架支持的语言包括:
- Java
- Python
- JavaScript
- Ruby
- Groovy
- PHP
- .Net
- Scala
Allure帮助文档
2)Allure框架的使用
步骤1:下载Allure框架,并配置到环境变量中
Allure框架下载地址:https://github.com/allure-framework/allure2/releases
然后解压Allure框架文件,放到自己指定的目录中。
把Allure框架的bin目录配置到Path环境变量中。
步骤2:验证Allure框架是否安装成功
使用命令:allure --version
需要在CMD命令行和PyCharm的Terminal中,都需要验证一下。
因为CMD可以验证通过,但是PyCharm中验证失败,如下:
J:\PyCharmWorkSpace\Pytest_d>allure --version
'allure' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
解决:需要重启PyCharm。
步骤3:下载allure-pytest
库(插件)
执行安装命令:pip install allure-pytest
步骤4:设置生成的Json格式临时报告的存放位置。
配置pytest.ini
文件,在pytest.ini
全局配置文件中的addopts
属性中添加:
--alluredir ../report/temp_jsonreport
例如:addopts = -vs --alluredir ../report/temp_jsonreport
然后我们执行测试用例就可以了,当然--alluredir
参数也可以不配置在pytest.ini
文件,比如在执行测试的命令行或者mian()函数中填写都可以。(主要是生成Json格式的测试报告,是多个json文件)
提示:
- 命令⾏参数:
pytest --alluredir report
,是在执⾏命令⽬录⽣成report⽂件夹,⽂件夹下包含xml⽂件。- 将
pytest.ini
文件中的生成报告的命令替换成--alluredir report
,在命令行中运行pytest即可生成报告格式为json格式,保存在项目文件的report文件夹中。
步骤5:生成Allure测试报告
原理是:使用第一步下载的Allure框架把Json格式的测试报告,转换成精美的HTML测试报告。
将上面/report/temp_jsonreport
文件夹中的json格式的测试报告转化为HTML格式的测试报告。
执行命令:allure generate ./report/temp_jsonreport -o ./report/html --clean
注意:以执行命令的目录为相对路径。
说明:
-
allure generate
: 固定命令。 -
./report/temp_jsonreport
:生成的Json格式的临时报告的路径。 -
-o
:输出output。 -
./report/html
:生成的Allure报告的路径。 -
--clean
:清空./report/html
路径中原来的Allure测试报告。
提示:main()函数中执行如上命令
if __name__ == '__main__':
pytest.main()
os.system("allure generate ./report/temp_jsonreport -o ./report/html --clean")
# 或者直接用main函数调用,哪种方式都可以。
# (直接执行测试文件, 而不用pytest的方式执行,就可以执行)
pytest.main(["testCase_demo1.py","-sv","--alluredir","../report/temp_jsonreport"])
os.system("allure generate ./report/temp_jsonreport -o ./report/html --clean")
说明:找不到路径的话,可以在Python Console
窗口调试。
最后:生成的Allure测试报告如下图:
提示:Allure测试报告支持自定义修改。