Jenkins读错junit xml时出错

时间:2012-11-26 19:33:41

标签: xml junit jenkins

我试图让jenkins从junit读取XML,但是我收到以下错误:

SEVERE: error while serving http://localhost:8080/job/JobTeste/test/trendMap

这是XML文件:

<?xml version="1.0" encoding="UTF-8"?>
<testrun name="test" project="test" tests="19" started="19" failures="0" errors="0" ignored="0">
  <testsuite name="testEmail" time="22.51">
    <testcase name="testA_importBanc" classname="testEmail" time="12.53"/>
    <testcase name="testValidEmail" classname="testEmail" time="9.98"/>
  </testsuite>
</testrun>

为什么会这样?

1 个答案:

答案 0 :(得分:1)

Jenkins使用Ant glob格式来查找您的JUnit结果文件。如果文件位于工作空间目录下的子目录中,则需要指定

**/Test.xml

或文件的完整路径,相对于工作区目录。