pip安装pytest-allure-adaptor,github地址 https://github.com/allure-framework/allure-pytest
pip3 install pytest-allure-adaptor / python3 -m pip install pytest-allure-adaptor
生成xml报告
pytest -s -q --alluredir report / python3 -m pytest -s -q --alluredir report
如果不指定路径,默认在当前目录下新建一个report目录,当然也可以指定路径
pytest -s -q --alluredir 指定report路径
执行完之后打开report文件夹,会自动生成xml格式的报告
安装 Command Tool
allure的版本目前有2个,从github上看,allure1不再被支持,请考虑使用allure2
https://github.com/allure-framework/allure2
allure-commandline releases版本 https://github.com/allure-framework/allure2/releases
下载最新的Download allure2.7.0版本
【下载Download allure2.7.0 地址:https://dl.bintray.com/qameta/generic/io/qameta/allure/allure/2.7.0/allure-2.7.0.zip】
下载好之后,解压到运行pytest的目录下
打开\allure-2.7.0\bin文件夹,会看到allure.bat文件,将此路径设置为系统环境变量path下,这样cmd任意目录都能执行了
比如我的路径: E:\Programs\ke4\pytest\test\allure-2.7.0\bin
运行allure2
前面pytest -s -q --alluredir这一步已经生成了xml格式的报告,放到了report目录下,接着执行以下命令格式
allure generate directory-with-results/ -o directory-with-report
directory-with-reports 是alluredir生成的xml目录, directory-with-report是最终生成html的目录
allure.bat已经加到环境变量了,所以可以用相对路径去生成html报告
allure generate report/ -o report/html
执行完之后目录结构如下:
打开报告
直接找到report/html打开index.html会显示一个空的报告,这里用pycharm去打开
打开后报告展示
依赖java环境
之前用的jdk1.7版本,执行allure时候报错: Unsupported major.minor VER SION 51.0
由于allure2是java开发的,需要依赖java环境,解决办法:jdk版本用1.8就可以了
作者:含笑半步颠√
博客链接:https://www.cnblogs.com/lixy-88428977
声明:本文为博主学习感悟总结,水平有限,如果不当,欢迎指正。如果您认为还不错,欢迎转载。转载与引用请注明作者及出处。
原文地址:https://www.cnblogs.com/lixy-88428977/p/9614423.html