1

我正在尝试让 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>

为什么会这样?

4

1 回答 1

1

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

**/Test.xml

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

于 2012-11-26T21:50:43.080 回答