前言
- 本篇来学习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