pytest-allure报告

1、安装allure
1)安装allure.zip
下载地址:allure-github:https://github.com/allure-framework/allure2
2)解压到本地目录、配置allure.bat的环境变量ALLURE_HOME
在命令行中运行allure,确认环境变量配置成功
变量 值
ALLURE_HOME D:\allure-2.7.0\bin
2、pytest插件安装 命令:pip install pytest-allure-adaptor
pip install pytest-allure-adaptor pytest 4.0以上,会出现pytest命令用不了
卸载pytest-allure-adaptor 用pip install allure-pytest
3、pytest生成allure测试报告的命令参数 命令:--alluredir=/XXX/my_allure_results
4、查看allure的测试报告命令
allure serve allure报告目录
示例:allure server D:\python_web_test_allure\HtmlTestReport\allure

allure文档:https://docs.qameta.io/allure

你可能感兴趣的:(pytest-allure报告)