1). allure安装
allure下载地址: http://allure.qatools.ru/
下载成功后将其解压到一个目录,自己习惯和python放一个目录
配置allure的环境变量
在系统变量的path中加入D:\Python\allure-2.13.0\bin(添加到bin为止)
配置成功后在命令窗口输入allure或者allure --version,验证allure是否安装成功
安装allure-pytest插件
pip install allure-pytest
1)在pytest基础上加上–alluredir生成xml报告
pytest -s -q --alluredir [xml_report_path]
// [xml_report_path]根据自己需要定义文件夹,例如为:/report/xml
2) 使用 Command Tool 生成html报告
allure generate [xml_report_path] -o [html_report_path] --clean
//[html_report_path]根据自己需要定义文件夹,例如义为:/report/html