在使用空手道运行测试用例后,一些html报告使用surefire插件发布。特别是,我发现每个功能文件都有一个 html 报告。当测试从自动化管道运行时,这很不方便,就像我的情况一样,我使用 htmlpublish Jenkins 插件来获取访问报告的公共链接,并将其传播到 Slack 渠道或电子邮件中。
我试图在我的pom中添加这个片段.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<aggregate>true</aggregate>
<!--also set this to link to generated source reports-->
<linkXRef>true</linkXRef>
</configuration>
</plugin>
但它没有达到预期的效果。
我正在尝试实现单个索引.html进入目标/万无一失的报告目录,以便我可以发布和浏览所有测试报告
有什么建议吗?谢谢
你使用的是平行流道吗?如果没有,请阅读:https://github.com/intuit/karate#parallel-execution
由于除了行业标准的 JUnit XML 格式外,我们还发出与黄瓜兼容的 JSON 报告,因此您可以选择适合您需求的任何报告解决方案。我认为 maven-cucumber-reporting 库应该适合您 - 但您可以决定:https://github.com/intuit/karate/tree/master/karate-demo#example-report
编辑:对于任何其他高级需求,请考虑编写自己的报告:https://stackoverflow.com/a/66773839/143475