Skip to content

Commit

Permalink
Merge pull request #10565 from geoand/ci-fix
Browse files Browse the repository at this point in the history
Disable failing Windows test
  • Loading branch information
gsmet authored Jul 8, 2020
2 parents 601aa53 + 9cfa53f commit 68e666a
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 68e666a

Please sign in to comment.