Skip to content

Commit a3bc394

Browse files
committed
fixes
1 parent c047bef commit a3bc394

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

build.gradle

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,18 @@ tasks.register('smokeTestGen', Test) {
193193
}
194194
}
195195

196+
tasks.withType(Test) {
197+
testLogging {
198+
exceptionFormat = "full"
199+
}
200+
201+
jacoco {
202+
destinationFile = file("$buildDir/jacoco/test.exec")
203+
}
204+
205+
outputs.upToDateWhen { false }
206+
}
207+
196208

197209
// Combined task to run both sets
198210
tasks.register('integrationTestsAll') {
@@ -212,16 +224,7 @@ tasks.withType(JavaCompile) {
212224
}
213225

214226
test {
215-
useJUnitPlatform()
216-
testLogging {
217-
exceptionFormat = "full"
218-
}
219-
220-
jacoco {
221-
destinationFile = file("$buildDir/jacoco/test.exec")
222-
}
223-
224-
outputs.upToDateWhen { false }
227+
useJUnit()
225228
}
226229

227230

0 commit comments

Comments
 (0)