Allure2的安装方法:
1、安装 Java,需要配置环境变量。
下载地址:
link
2、安装 Allure ,需要配置环境变量。
3、安装插件
Python:pip install allure-pytest。
Java:Maven插件安装
运行,生成测试报告:
以test_allure_demo.py为例
1、执行pytest .\test_allure_demo.py --alluredir=./result --clean-alluredir
2、执行allure serve .\result
步骤1会执行文件test_allure_demo.py,并通–alluredir将测试结果(JSON格式)存放与路径./result下。
步骤2会用allure将步骤1中生成的json数据解析成在线的测试报告,并于页面中展示出来。文章来源:https://www.toymoban.com/news/detail-436100.html
allure装饰器
@allure.epic(“”)
@allure.feature(“”)
@allure.story(“”)
@allure.title(“”)
@allure.step(“”)文章来源地址https://www.toymoban.com/news/detail-436100.html
def XXX(self):
with allure.step(""):
到了这里,关于【Allure】的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!