Skip to content

Commit

Permalink
#132 skip on win
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Dec 2, 2024
1 parent 46f9eaf commit ff7b033
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/java/com/yegor256/xsline/StSchemaTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Assumptions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;

/**
* Test case for {@link StSchema}.
Expand Down Expand Up @@ -60,6 +62,7 @@ void shouldThrow() {
}

@Test
@DisabledOnOs(OS.WINDOWS)
void validatesWithoutSchema() {
final Path xsd = Paths.get("src/test/resources/com/yegor256/xsline/simple.xsd");
Assumptions.assumeTrue(xsd.toFile().exists());
Expand Down

0 comments on commit ff7b033

Please sign in to comment.