On 17/02/2011, at 9:43 AM, Peter Niederwieser wrote: >> I'm looking for something similar to the JavaDoc aggregation task in the >> Cookbook, only for test results. I have a multiproject build; I do not >> want to generate the report; I do want to aggregate the XML results >> (Hudson will build the report off of this). Has anyone done something >> like this? >> > > What exactly is "aggregating the XML results"? As far as I know, JUnit test > result files are per-class, not arranged in a hierarchy, and not linked to > each other. Do you just need to copy them into a single directory? This is > easily achieved with Gradle's file handling capabilities. > > Personally I have no need for JUnit HTML reports; I'm only interested in the > CI server's test result page and statistics. TeamCity provides this without > me aggregating the XML results.
Here's is an example of aggregating the JUnit results for into one HTML report for a multi project build. https://github.com/geb/geb/blob/develop/build.gradle#L453 --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
