Is there way to generate a junit xml report that h...
# multiplatform
d
Is there way to generate a junit xml report that has all results when running
./gradlew check
? When I run it I get an HMTL file with all the results and several XML files with their individual results. Just looking to have one XML file with all the results. This is in a multiplatform project. I already tried
Copy code
test {
    reports {
        .....
    }               
}
but gradle not happy with that dsl