File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
devtools/gradle/gradle-application-plugin/src/main/java/io/quarkus/gradle Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -424,7 +424,8 @@ public boolean isSatisfiedBy(Task t) {
424424 tasks .register (INTEGRATION_TEST_TASK_NAME , Test .class , intTestTask -> {
425425 intTestTask .setGroup ("verification" );
426426 intTestTask .setDescription ("Runs Quarkus integration tests" );
427- intTestTask .dependsOn (quarkusBuild , testTask );
427+ intTestTask .dependsOn (quarkusBuild );
428+ intTestTask .shouldRunAfter (testTask );
428429 intTestTask .setClasspath (intTestClasspath );
429430 intTestTask .setTestClassesDirs (intTestSourceOutputClasses );
430431 });
@@ -449,7 +450,8 @@ public boolean isSatisfiedBy(Task t) {
449450 tasks .register (TEST_NATIVE_TASK_NAME , Test .class , testNative -> {
450451 testNative .setDescription ("Runs native image tests" );
451452 testNative .setGroup ("verification" );
452- testNative .dependsOn (quarkusBuild , testTask );
453+ testNative .dependsOn (quarkusBuild );
454+ testNative .shouldRunAfter (testTask );
453455 testNative .setClasspath (nativeTestClasspath );
454456 testNative .setTestClassesDirs (nativeTestClassesDirs );
455457 });
You can’t perform that action at this time.
0 commit comments