From 9cfa53fe122328549b21948fc3092bbcdac5916a Mon Sep 17 00:00:00 2001 From: Georgios Andrianakis Date: Wed, 8 Jul 2020 15:48:47 +0300 Subject: [PATCH] Disable failing Windows test --- .../maven/src/test/java/io/quarkus/maven/it/DevMojoIT.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/integration-tests/maven/src/test/java/io/quarkus/maven/it/DevMojoIT.java b/integration-tests/maven/src/test/java/io/quarkus/maven/it/DevMojoIT.java index 20f49b611f55e..2e1d572189dbe 100644 --- a/integration-tests/maven/src/test/java/io/quarkus/maven/it/DevMojoIT.java +++ b/integration-tests/maven/src/test/java/io/quarkus/maven/it/DevMojoIT.java @@ -23,6 +23,8 @@ import org.apache.commons.io.FileUtils; import org.apache.maven.shared.invoker.MavenInvocationException; import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.condition.DisabledOnOs; +import org.junit.jupiter.api.condition.OS; import io.quarkus.maven.it.verifier.MavenProcessInvocationResult; import io.quarkus.maven.it.verifier.RunningInvoker; @@ -789,6 +791,7 @@ public void testThatTheApplicationIsStartedWithoutBuildGoalWhenNotEnforced() thr assertThat(running.log()).doesNotContain("skipping quarkus:dev as this is assumed to be a support library"); } + @DisabledOnOs(OS.WINDOWS) // need to figure this out... @Test public void testResourcesFromClasspath() throws MavenInvocationException, IOException, InterruptedException { testDir = initProject("projects/multimodule-classpath", "projects/multimodule-resources-classpath");