jbisotti 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. jbisotti wrote: > > In the multiproject scenario, it seems like a lot of tasks would benefit > from aggregation. Are there any plans to build something to generically > address this into Gradle 1.0? > Do you have something particular in mind? Aggregation seems like a very task-specific operation to me. -- Peter Niederwieser Developer, Gradle http://www.gradle.org Trainer & Consultant, Gradle Inc. http://www.gradle.biz Creator, Spock Framework http://spockframework.org -- View this message in context: http://gradle.1045684.n5.nabble.com/How-to-aggregate-test-results-for-a-multiproject-build-tp3383962p3388599.html Sent from the gradle-user mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
