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

Posted 上海-悠悠

tags:

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

前言

pytest 生成junit-xml 测试报告,那么生成的xml报告有什么用呢?可以集合一些持续集成工具(如jenkins…等)方便查看报告。

junit-xml 测试报告

命令行参数有2个跟 junit-xml 报告相关的参数

  --junit-xml=path      create junit-xml style report file at given path.
  --junit-prefix=str    prepend prefix to classnames in junit-xml output

--junit-xml 指定报告保存地址,使用示例

> pytest demo --junit-xml=./report.xml

运行后会在当前目录生成一个report.xml格式报告

--junit-prefix 设置xml报告的class属性,使用示例

> pytest demo --junit-xml=./report.xml --junit-prefix=xxx

pytest.ini配置

pytest.ini配置有5个参数可以配置

  junit_suite_name (string):
                        Test suite name for JUnit report
  junit_logging (string):
                        Write captured log messages to JUnit report: one of no|log|system-out|system-err|out-err|all
  junit_log_passing_tests (bool):
                        Capture log information for passing tests to JUnit report:
  junit_duration_report (string):
                        Duration time to report: one of total|call
  junit_family (string):
                        Emit XML for schema: one of legacy|xunit1|xunit2

junit_suite_name 参数可以修改JUnit报告的名称,使用示例,在pytest.ini配置文件添加

[pytest]

junit_suite_name=yoyo

运行后会在xml报告中修改testsuite中的name属性

在命令行中也可以通过传参-o junit_suite_name也可以改变testsuite中的name属性

> pytest demo --junit-xml=./report.xml -o junit_suite_name

以上是关于pytest文档75 - 生成 junit-xml 测试报告的主要内容,如果未能解决你的问题,请参考以下文章

pytest.11.生成xml格式的测试报告

pytest 从百草园到三味书屋....

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

pytest文档44-allure.dynamic动态生成用例标题

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

pytest文档84 - 把收集的 yaml 文件转成pytest 模块和用例