Skip to content

Commit

Permalink
Ignore tests of container-runner-maven-plugin on Windows, as they are…
Browse files Browse the repository at this point in the history
… os-specific (#4291)

Signed-off-by: Patrik Dudits <[email protected]>
  • Loading branch information
pdudits authored and senivam committed Oct 16, 2019
1 parent a68bea0 commit d92935a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions test-framework/maven/container-runner-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -195,4 +195,27 @@
</plugins>
</pluginManagement>
</build>

<profiles>
<profile>
<id>doesnt-work-on-windows</id>
<activation>
<os>
<family>Windows</family>
</os>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>

0 comments on commit d92935a

Please sign in to comment.