@@ -325,6 +325,10 @@ subprojects {
325
325
}
326
326
logTestStdout. rehydrate(delegate, owner, this )()
327
327
328
+ // The suites are for running sets of tests in IDEs.
329
+ // Gradle will run each test class, so we exclude the suites to avoid redundantly running the tests twice.
330
+ exclude ' **/*Suite.class'
331
+
328
332
useJUnit {
329
333
includeCategories ' org.apache.kafka.test.IntegrationTest'
330
334
}
@@ -343,6 +347,10 @@ subprojects {
343
347
exceptionFormat = testExceptionFormat
344
348
}
345
349
logTestStdout. rehydrate(delegate, owner, this )()
350
+
351
+ // The suites are for running sets of tests in IDEs.
352
+ // Gradle will run each test class, so we exclude the suites to avoid redundantly running the tests twice.
353
+ exclude ' **/*Suite.class'
346
354
347
355
if (it. project. name != ' generator' ) {
348
356
useJUnit {
@@ -1261,11 +1269,24 @@ project(':streams') {
1261
1269
standardOutput = new File (generatedDocsDir, " streams_config.html" ). newOutputStream()
1262
1270
}
1263
1271
1264
- test {
1265
- // The suites are for running sets of tests in IDEs.
1266
- // Gradle will run each test class, so we exclude the suites to avoid redundantly running the tests twice.
1267
- exclude ' **/*Suite.class'
1268
- }
1272
+ task testAll(
1273
+ dependsOn : [
1274
+ ' :streams:test' ,
1275
+ ' :streams:test-utils:test' ,
1276
+ ' :streams:streams-scala:test' ,
1277
+ ' :streams:upgrade-system-tests-0100:test' ,
1278
+ ' :streams:upgrade-system-tests-0101:test' ,
1279
+ ' :streams:upgrade-system-tests-0102:test' ,
1280
+ ' :streams:upgrade-system-tests-0110:test' ,
1281
+ ' :streams:upgrade-system-tests-10:test' ,
1282
+ ' :streams:upgrade-system-tests-11:test' ,
1283
+ ' :streams:upgrade-system-tests-20:test' ,
1284
+ ' :streams:upgrade-system-tests-21:test' ,
1285
+ ' :streams:upgrade-system-tests-22:test' ,
1286
+ ' :streams:upgrade-system-tests-23:test' ,
1287
+ ' :streams:examples:test'
1288
+ ]
1289
+ )
1269
1290
}
1270
1291
1271
1292
project(' :streams:streams-scala' ) {
0 commit comments