pytest + yaml 框架 -10.allure 生成报告

Posted 上海-悠悠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytest + yaml 框架 -10.allure 生成报告相关的知识,希望对你有一定的参考价值。

前言

本插件是基于pytest框架开发的,所以pytest 的插件都能使用,生成报告可以用到 allure 报告
pip 安装插件

pip install pytest-yaml-yoyo

allure 报告功能在 v1.0.8 版本上实现

allure 命令行工具

allure 是一个命令行工具,需要去github上下载最新版https://github.com/allure-framework/allure2/releases

allure 命令行工具是需要依赖jdk 环境,环境内容自己去搭建了

生成 allure 报告

在用例所在的目录执行命令, --alluredir 是指定报告生成的目录

pytest --alluredir ./report

打开allure 报告执行命令

>allure serve ./report

查看报告

首页显示

图表查看

用例详情根据yaml文件名称和用例名称展示内容

以上是关于pytest + yaml 框架 -10.allure 生成报告的主要内容,如果未能解决你的问题,请参考以下文章

pytest + yaml 框架 - 1.我们发布上线了!

pytest文档73-pytest+yaml实现接口自动化框架之用例参数关联

pytest + yaml 框架 -10.allure 生成报告

pytest + yaml 框架 -10.allure 生成报告

pytest + yaml 框架 -9.logging日志输出和保存

pytest + yaml 框架 -8.一个yaml 文件可以支持多个用例了