Skip to content

Commit 3f8c933

Browse files
committed
Tweak testing
1 parent 7d66e5c commit 3f8c933

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

plugin/src/test/groovy/de/jjohannes/gradle/javaecosystem/capabilities/test/GuavaClasspathTest.groovy

+6-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,12 @@ class GuavaClasspathTest extends Specification {
108108
result.add([it[0], it[1], it[2], 'standard-jvm', 'runtimeClasspath'])
109109
}
110110
}
111-
return result
111+
if (System.getProperty("gradleVersionUnderTest") == "7.5.1") {
112+
// only do all permutations for one Gradle version
113+
return result
114+
}
115+
// reduced amount of permutations
116+
return result.subList(0, 32)
112117
}
113118

114119
@Unroll

0 commit comments

Comments
 (0)