如何生成可读的 Allure 报告?

问题描述 投票:0回答:1

嘿,实际上我正在尝试生成一个可读的“Allure Report”,但每次运行命令 AllureGenerate 或 Allureserve 时。即使我使用 pip 安装了它,它也会保存“未找到 Allure”。现在我想生成一个 HTML 格式与客户端共享,但我什么也没得到。

ONLY THIS JSON FORMAT

倾城生成 倾城服务

selenium-webdriver allure python-behave
1个回答
0
投票

您需要安装Allure Commandline工具。请按照官方文档获取说明:https://allurereport.org/docs/gettingstarted-installation/

然后运行

$ allure generate --single-file path/to/allure-results

它将生成一个 HTML 文件,

allure-report/index.html
,然后可以与客户端共享。

© www.soinside.com 2019 - 2024. All rights reserved.