我有一个 jenkins 工作,它有一个编写 xml 报告的脚本。xml 与此示例相同:
<testng-results>
<reporter-output>
</reporter-output>
<suite name="suite0" failures="0" tests="0">
<test name="testcase1">
<class name="testcase1.class">
<test-method name="test1" started-at="2013-10-07T16:20:51Z" finished-at="2013-10-07T16:20:53Z" duration-ms="2754" status="PASS">
</test-method>
</class>
</test>
<test name="test2">
<class name="test2.class">
<test-method name="testcase2" started-at="2013-10-07T16:21:14Z" finished-at="2013-10-07T16:21:19Z" duration-ms="4163" status="FAIL">
<short-stacktrace>description of the error with a lot of information....
</short-stacktrace>
</test-method>
</class>
</test>
</suite>
</testng-results>
此 xml 由 testNgplugin 读取,并向我显示持续时间、失败次数和通过次数的测试。但是失败的测试没有向我显示堆栈跟踪...¿有一种方法可以在 Jenkins 中向用户显示错误描述?我必须使用什么标签?