生成 html 测试报告:
- 安装插件:pip install pytest-html;
- 使用参数:pytest -m xxx --html=report_path.html;
生成 allure 测试报告:
- 安装插件:pip install allure-pytest;
- 下载并解压 allure2,将 allure2/bin 目录配置到环境变量;
- --alluredir 参数生成 allure 报告:pytest --alluredir=allure_path;
- 开启 allure 服务:allure serve allure_path (python生成的 allure 报告的文件夹路径)
- 访问 allure 服务的本地路径,查看报告;