Allure安装及使用

Posted noon-12

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Allure安装及使用相关的知识,希望对你有一定的参考价值。

Allure是一个独立的报告插件,生成美观易读的报告

在Python3版本中,安装Allure方法:    

打开cmd,输入pip install allure-pytest即安装好了。

报告转html工具安装

allure-2.6.0.zip已经下载了,放在了E:progromesallure-2.7.0这个目录下

将压缩包内的bin目录配置到path系统环境变量

在项目的使用

1, 配置文件中,

addopts = -s --alluredir=./report --reruns 0

2,进入report上级目录,即点击一下你的项目名,在Terminal中执行命令  

allure generate report/ -o report/html --clean

等3秒左右,在提示下,输入pytest

 

结果    report目录下会生成index.html文件,即为可视化报告

以上是关于Allure安装及使用的主要内容,如果未能解决你的问题,请参考以下文章

Python+pytest生成完美Allure报告入门

pytest学习和使用23-通俗易懂的聊聊allure常用特性集合及使用方法说明

allure报告定制(pytest+jenkins)

Jenkins-pytest-allure报告

jenkins学习8-生成Allure报告(Allure Jenkins Plugin)

19-pytest-allure-pytest环境搭建