带有测量图插件的 Jenkins 不会绘制测量结果
有没有人成功使用 Jenkins 和 测量图< /a> 插件和带有标签的 xUnit 测试结果文件?
如果是,我希望查看工作 xUnit 文件的示例,并从您那里获得有关配置 Jenkins 和适当的 Jenkins 作业以完成此壮举的任何提示。
Is there anyone who was successful in getting a plot using Jenkins with the Measurement Plots plugin and a xUnit test results file with the tags?
If yes, I'd like to see a sample of a working xUnit file and get from you any tips you may have about configuring Jenkins and the appropriate Jenkins job to accomplish this feat.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我刚刚在作者的帮助下弄清楚了。技巧是在 XML 中转义 XML 并使用
来提供测量图插件。下面的步骤展示了如何使用它并向插件提供各种值:执行外壳命令:
I just figured it out with some help from the author. The trick is to escape the XML inside the XML and use
<system-out>
to feed the Measurements Plot plugin. The steps below shows how to use it and feed various values into the plugin:Execute Shell Command:
测量图插件旨在从标准输出和错误缓冲区中获取值,不应用于绘制测试框架的统计数据和详细信息。
对于 xUnit,有一个 xUnit 插件 可以很好地完成这项工作。除非您想要处理 xUnit 使用的某些非常特定类型的数据/信息,否则这应该是很好地显示测试结果的技巧。
The Measurement Plots plugin is designed to take values out of standard output and error buffer and should not be used to plot stats and details of test frameworks.
For xUnit there is a xUnit plugin that does the job quite nicely. Unless you want to handle some very specific type of data/information used by xUnit, this should the trick of nicely showing the tests results.