Skip to content

Commit ea84906

Browse files
committed
Ignore scope provided dependencies tests when running on windows
1 parent 9050ede commit ea84906

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

native-maven-plugin/src/functionalTest/groovy/org/graalvm/buildtools/maven/JavaApplicationWithTestsFunctionalTest.groovy

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141

4242
package org.graalvm.buildtools.maven
4343

44+
import spock.lang.IgnoreIf
4445
import spock.lang.Issue
4546

4647
class JavaApplicationWithTestsFunctionalTest extends AbstractGraalVMMavenFunctionalTest {
@@ -153,6 +154,7 @@ class JavaApplicationWithTestsFunctionalTest extends AbstractGraalVMMavenFunctio
153154
outputContains "SurefirePlugin - Tests run: 8, Failures: 0, Errors: 0, Skipped: 0"
154155
}
155156

157+
@IgnoreIf({ os.windows })
156158
def "dependencies with scope provided are on classpath for test binary"() {
157159
withSample("java-application-with-tests")
158160

@@ -166,6 +168,7 @@ class JavaApplicationWithTestsFunctionalTest extends AbstractGraalVMMavenFunctio
166168
outputContains expectedOutput
167169
}
168170

171+
@IgnoreIf({ os.windows })
169172
def "dependencies with scope provided are not on classpath for main binary"() {
170173
withSample("java-application-with-tests")
171174

0 commit comments

Comments
 (0)