将黄瓜junit报告输出到特定的xml文件

时间:2017-11-16 06:14:45

标签: cucumber cucumber-junit

在我的cucumber.yml文件中,我提供了以下代码行来生成junit报告。目标是在文件report.xml中生成junit报告,但在执行后,它将创建名为report.xml的文件夹并在文件TEST-Appllication-Feature.xml中生成报告

请告诉我们如何在Junit报告中指定文件名。

p3: <%= standard_opts %> --tags @p3 --profile html_report  --profile junit_report
junit_report: --format junit  --out=report.xml

1 个答案:

答案 0 :(得分:0)

将此内容添加到您的插件中就可以了。

plugin = {"junit:target/cucumber-results.xml"}

这会给您一个junit报告。