首页 > 其他分享 >allure介绍——生成完美的测试报告

allure介绍——生成完美的测试报告

时间:2022-09-19 11:33:22浏览次数:83  
标签:allure 测试报告 Allure 完美 路径 html 生成 pytest

一、allure简介

Allure是输出网页测试报告的一种框架

1、该框架是基于Java写的,所以安装该框架需要先安装JDK;

2、下载allure命令行工具,路径:https://github.com/allure-framework/allure2/releases

注:①下载包放到pytest文件夹中,然后将allure/bin的路径放到环境变量的path中

  ②allure命令行工具,这个工具主要用来把测试用例的运行结果转换成html格式

3、安装pytest-allure插件,pip install pytest-allure

4、相关命令

Pytest 文件名 –alluredir ./report

Allure serve report

Python3 –m pytest –alluredir=生成报告的路径  py文件名

Allure generate 生成报告的路径  -o 生成html的路径

Allure open 生成报告路径下的目录

注:①在allure-report下index.html文件是不能直接打开的,出现页面都是loading的情况,这是因为直接allure报告用浏览器是打不开的,需要用allure命令渲染之后打开才能展示效果。

  ②allure使用了两种方式来渲染页面。分别是 allure open 和 allure serve。前者用于在本地渲染和查看结果,后者用于在本地渲染后对外展示结果。这里我们使用allure open。运行命令

参考:https://www.cnblogs.com/syy714363310/p/15149631.html

二、allure几个常用特性

1、allure.discritption("xxxxxxxxxxxxxxxxxxxx")

2、allure.story(“xxxxxxxxxx”)

3、with allure.step(“xxxx”)

如果要用到with allure.step(“xxxx”),必须要导入allure,import allure

标签:allure,测试报告,Allure,完美,路径,html,生成,pytest
From: https://www.cnblogs.com/ljkuailexuexi/p/16707158.html

相关文章