Skip to content

Commit

Permalink
Disable failing Windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand committed Jul 8, 2020
1 parent 601aa53 commit 9cfa53f
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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");
Expand Down

0 comments on commit 9cfa53f

Please sign in to comment.