I'm running Go 2.2.1(13139-9f890063bb7d) on Mac 10.6.7 with java version "1.6.0_24".
I have a Maven project with 11 modules, and I want to upload my test reports so I can get test statistics. I have the following XML snippet in configuration:
<artifacts>
<test src="**/target/surefire-reports" />
</artifacts>But after build completed I didn't get those test resports instead of the following lines in log:
2011-06-15 18:52:16,021 [loopThread] ERROR thoughtworks.cruise.config.TestArtifactPlan:63 - The Directory pipelines/Test/**/target/surefire-reports specified as a test artifact was not found. Please Check your cruise-config.xml
2011-06-15 18:52:16,022 [loopThread] WARN thoughtworks.cruise.config.TestArtifactPlan:87 - No Files were found in the Test Results foldersThen I changed the configuration to:
<artifacts>
<artifact src="**/target/surefire-reports" />
</artifacts>It worked.
Can you guys take a look at it?
Comments
2 comments
It works, I got test statistics on job details page.
Looks like glob patterns are not supported for test artifacts. We'll log this as a bug.
Please sign in to leave a comment.