pytest文档40-allure报告清空上一次运行的记录(--clean-alluredir)

Posted yoyoketang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytest文档40-allure报告清空上一次运行的记录(--clean-alluredir)相关的知识,希望对你有一定的参考价值。

前言

使用allure 生成报告的时候,当你的用例名称修改后,会发现保留了上一次的用例运行记录。
如果你想先清空之前的记录再生成新的报告,可以再运行用例的时候加上 --clean-alluredir 命令行参数。

问题描述

allure报告可以记录你用例每次执行的情况,这样方便跟踪用例的成功率
技术图片
但是也会带来一个新的问题,当你代码里面的用例删除或者更换名称后,依然会记录之前的用例报告

--clean-alluredir 清空

如果你想每次用例执行之前先清空allure的报告记录,可以加个参数 --clean-alluredir
使用 pytest -h 可以查看报告相关的三个参数

reporting:
  --alluredir=DIR       Generate Allure report in the specified directory (may
                        not exist)
  --clean-alluredir     Clean alluredir folder if it exists
  --allure-no-capture   Do not attach pytest captured logging/stdout/stderr to
                        report

reporting 报告相关参数
--alluredir=DIR 指定报告的目录路径
--clean-alluredir 如果已经存在报告,就先清空它
--allure-no-capture 不加载 logging/stdout/stderr 文件到报告

带上 clean-alluredir 参数重新执行用例

pytest --alluredir ./report/allure_report --clean-alluredir
allure serve ./report/allure_report

技术图片









以上是关于pytest文档40-allure报告清空上一次运行的记录(--clean-alluredir)的主要内容,如果未能解决你的问题,请参考以下文章

Pytest 系列(26)- 清空 allure 历史报告记录

23-pytest-清空allure历史报告

pytest文档7-pytest-html生成html报告

pytest文档75 - 生成 junit-xml 测试报告

pytest文档47-allure报告添加用例失败截图

pytest文档39-参数化(parametrize)结合allure.title()生成不同标题报告