Skip to content

Commit 87ca3ec

Browse files
authored
Merge pull request #50577 from gsmet/reduce-waiting-times
Maven ITs - Reduce waiting times in multi-module tests
2 parents 2c2f42e + 7dc16c0 commit 87ca3ec

File tree

2 files changed

+4
-8
lines changed
  • integration-tests/maven/src/test
    • java/io/quarkus/maven/it
    • resources-filtered/projects/multimodule/dependency/src/main/java/org/acme/dependency

2 files changed

+4
-8
lines changed

integration-tests/maven/src/test/java/io/quarkus/maven/it/DevMojoIT.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1405,14 +1405,6 @@ public void testThatTheApplicationIsReloadedOnDotEnvConfigChange() throws MavenI
14051405
.until(() -> devModeClient.getHttpResponse("/app/hello/otherGreeting").contains(uuid));
14061406
}
14071407

1408-
@Test
1409-
public void testMultiModuleDevModeWithoutJavaSrc() throws MavenInvocationException, IOException {
1410-
testDir = initProject("projects/multimodule", "projects/multimodule-no-java-src");
1411-
runAndCheck();
1412-
1413-
assertThat(running.log()).doesNotContain("The project's sources directory does not exist");
1414-
}
1415-
14161408
@Test
14171409
public void testThatTheApplicationIsNotStartedWithoutBuildGoal() throws MavenInvocationException, IOException {
14181410
testDir = initProject("projects/classic-no-build");
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package org.acme.dependency;
2+
3+
public class Dummy {
4+
}

0 commit comments

Comments
 (0)