We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c047bef commit a3bc394Copy full SHA for a3bc394
build.gradle
@@ -193,6 +193,18 @@ tasks.register('smokeTestGen', Test) {
193
}
194
195
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
208
209
// Combined task to run both sets
210
tasks.register('integrationTestsAll') {
@@ -212,16 +224,7 @@ tasks.withType(JavaCompile) {
212
224
213
225
214
226
test {
215
- useJUnitPlatform()
216
- testLogging {
217
- exceptionFormat = "full"
218
- }
219
-
220
- jacoco {
221
- destinationFile = file("$buildDir/jacoco/test.exec")
222
223
- outputs.upToDateWhen { false }
227
+ useJUnit()
228
229
230
0 commit comments