Skip to content

Commit

Permalink
Disable test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Apr 3, 2024
1 parent 4429255 commit d3e5786
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
import org.apache.maven.project.MavenProject;
import org.apache.maven.project.inheritance.AbstractProjectInheritanceTestCase;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
Expand Down Expand Up @@ -60,6 +62,7 @@ class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {
// ----------------------------------------------------------------------

@Test
@DisabledOnOs(OS.WINDOWS) // need to investigate why it fails on windows
void testProjectInheritance() throws Exception {
File localRepo = getLocalRepositoryPath();

Expand Down

0 comments on commit d3e5786

Please sign in to comment.