09-Httprunner-生成测试报告
Posted 爱学习de测试小白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了09-Httprunner-生成测试报告相关的知识,希望对你有一定的参考价值。
生成测试报告
前言
- 本篇来学习Httprunner如何生成测试报告
生成html报告
查看插件版本
- httprunner 安装的时候,会自动安装 pytest-html 插件,查看插件对应的版本号:pip show pytest-html
使用命令生成报告
- pytest 测试用例路径 参数
- –html 指定报告路径 , --self-contained-html参数让css文件集成到html上
**说明:**用hrun运行会生成报告会有问题,所以这里使用pytest运行
pytest testcases/demo_testcase_ref_test.py --html=./reports/result.html
生成Allure报告
- aluure 环境搭建参考:allure环境搭建
生成报告
- –alluredir 指定报告路径
pytest testcases/demo_testcase_request_test.py --alluredir ./allure_report
查看报告
- 启动allure服务: allure serve ./allure_report
以上是关于09-Httprunner-生成测试报告的主要内容,如果未能解决你的问题,请参考以下文章