进入工具包官网:https://github.com/allure-framework/allure2/releases
使用如下命令安装插件
pip install allure-pytest
生成aluure报告分成两步
执行命令 pytest --alluredir=文件路径 生成json格式的临时文件,路径中不存在的目录会自动创建
执行命令 allure generate ./temp -o ./report/ --clean 生成报告
参数说明
在./report目录下,打开生成的index.html文件查看生成的报告
打开的报告界面如下
原文:https://www.cnblogs.com/testlearn/p/14722573.html