美文网首页
pytest-allure环境配置

pytest-allure环境配置

作者: 无谓着 | 来源:发表于2020-12-29 15:12 被阅读0次

1、通过pip安装pytest-allure模块。

pip install pytest-allure

2、下载allure命令行工具,并配置环境变量,下载地址https://github.com/allure-framework/allure2/releases,下载完进行环境变量的配置。

image.png
3、生成带allure报告的用例,只需要在执行的时候在后面加参数 --alluredir
 --alluredir ./report/allure_raw
image.png

其中 ./report/allure_raw指明生成报告源文件放置在当前目录的report/allure_raw目录下,没有该路径会自动创建。
4、带 --alluredir参数执行用例,报告源文件生成后,需要指定报告源文件所在的目录执行命令来启动allure服务,此时会自动通过浏览器打开一个报告链接。


image.png
allure serve report/allure_raw
image.png

相关文章

网友评论

      本文标题:pytest-allure环境配置

      本文链接:https://www.haomeiwen.com/subject/hcgfoktx.html