20

从詹金斯收到的确切消息是:

No test report files were found. Configuration error?
Build step 'Publish JUnit test result report' changed build result to FAILURE

配置 JUnit 测试结果报告插件时,在输入“测试报告 XMLs”路径为“/reports/TEST-*.xml”时,路径下方显示以下错误:

'/reports/TEST-*.xml' doesn't match anything: '' exists but not '/reports/TEST-*.xml'

我也尝试过使用完整路径,但这会产生相同的结果。在这两种情况下,路径都应该选择 /reports 目录中存在的“TESTS-TestSuites.xml”文件。

我不确定这是否是插件或正在生成的 XML 文件的问题。我也知道这可能是我为运行 JUnit 测试并生成 XML 结果文件而编写的 ant 构建脚本的问题,因此我在下面包含了此内容,以防需要更改:

<?xml version="1.0" encoding="utf-8"?>
<project name="jenkins-tests" basedir="." default="linux">

<property name="junit.output.dir" value="output"/>
<property name="src.dir" value="src"/>
<property name="lib.dir" value="libs" />
<property name="bin.dir" value="bin" />
<property name="full-compile" value="true" />

<path id="classpath.base"/>

<path id="classpath.test">
    <pathelement location="${bin.dir}" />
    <pathelement location="${src.dir}" />
    <pathelement location="${lib.dir}" />
    <pathelement location="${lib.dir}/junit.jar" />
    <path refid="classpath.base" />
</path>

<target name="clean" description="Clean up build artefacts">
    <delete dir="${basedir}/${junit.output.dir}" />
</target>

<target name="prepare" depends="clean" description="Prepare for build">
    <mkdir dir="${basedir}/${junit.output.dir}" />
    <mkdir dir="${junit.output.dir}/reports"/> 
</target>

<target name="compile" depends="prepare">
    <javac srcdir="${src.dir}" destdir="${bin.dir}" verbose="${full-compile}" includeAntRuntime="false" >
        <classpath refid="classpath.test"/>
    </javac>
</target>

<target name="test" depends="compile">
    <junit printsummary="true" haltonfailure="false">
        <formatter type="xml" usefile="true"/>
        <classpath refid="classpath.test" />
        <batchtest fork="yes" todir="${junit.output.dir}">
            <fileset dir="${src.dir}">
                <include name="*.java"/>
            </fileset>
        </batchtest>
    </junit>
</target>

<target name="test-reports" depends="test">
    <junitreport tofile="TESTS-TestSuites.xml" todir="${junit.output.dir}/reports">
        <fileset dir="${junit.output.dir}">
            <include name="TEST-*.xml" />
        </fileset>
        <report format="frames" todir="${junit.output.dir}/reports" />
    </junitreport>
</target>
</project>

我一直在研究这个问题一段时间,但没有找到任何解决方案,所以我将不胜感激。谢谢。

4

2 回答 2

19

Jenkins 从工作空间根目录查找路径。确保给定路径正确或使用通配符查看多个位置。尝试使用**/reports/TEST-*.xml 您确定报告文件夹就在工作区下方吗?手动验证测试结果文件是否确实存在于路径中给定的位置。

于 2013-02-18T10:56:47.103 回答
8

对于具有多种 Gradle 产品风格的AndroidTest report XMLs项目,我使用了以下路径:

**/build/test-results/**/TEST-*.xml

JUnit 插件

于 2017-05-09T16:56:44.547 回答