使用 Hudson 解析 JUnit XML
我正在使用 Jasmine-reporters 和 Jasmine 来输出一堆我需要 Hudson 的 JUnitXML 格式文件为我解析并报告成功/失败。有谁知道我如何要求 Hudson 在构建过程中测试一堆 XML?谢谢!
I'm using Jasmine-reporters with Jasmine to output a bunch of JUnitXML format files that I need Hudson to parse for me and report on success/failure. Does anybody know how I would ask Hudson to go test a bunch of XML as part of the build process? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在作业的“构建后操作”中,应该有一个“发布 JUnit 测试结果报告”复选框。您可以放置一个 ant-glob 表达式(就像您正在编写“includes”元素一样)来匹配您的 xml 文件。我基于我在 Jenkins 服务器中看到的内容;哈德森应该相当于你的问题。
In the job's "Post-build Actions", there should be a check box to "Publish JUnit test result report". You can put an ant-glob expression (as if you were writing an "includes" element) to match your xml files. I'm basing this on what I see in my Jenkins server; Hudson should be equivalent for your question.