Skip to content

Commit

Permalink
Remove Gradle Integration Test Task Dependency
Browse files Browse the repository at this point in the history
The quarkusIntTest task does not use the output of the test task, so it does not need to be a dependency

Fixes quarkusio#44383
  • Loading branch information
gilday committed Mar 7, 2025
1 parent 43c95ab commit 68e37d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ public boolean isSatisfiedBy(Task t) {
tasks.register(INTEGRATION_TEST_TASK_NAME, Test.class, intTestTask -> {
intTestTask.setGroup("verification");
intTestTask.setDescription("Runs Quarkus integration tests");
intTestTask.dependsOn(quarkusBuild, testTask);
intTestTask.dependsOn(quarkusBuild);
intTestTask.setClasspath(intTestClasspath);
intTestTask.setTestClassesDirs(intTestSourceOutputClasses);
});
Expand Down

0 comments on commit 68e37d5

Please sign in to comment.