Skip to content

Commit c64cdcc

Browse files
committed
Restore JUnit reports location
Since the upgrade to Gradle 3, our Bamboo build is failing because it can't find test reports "at the usual location". This commit restores the location that Gradle 2 was using until we upgrade to a version of Bamboo that supports it. Issue: SPR-14569
1 parent d48c32e commit c64cdcc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ configure(allprojects) { project ->
160160
// classes with the "$" pattern; otherwise, using -Dtest.single=MyTests to
161161
// run MyTests by itself will fail if MyTests contains any inner classes.
162162
exclude(["**/Abstract*.class", '**/*$*'])
163+
reports.junitXml.destination = file("$buildDir/test-reports")
163164
}
164165

165166
repositories {

0 commit comments

Comments
 (0)