We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76074c1 commit 0bb7a67Copy full SHA for 0bb7a67
build.gradle.kts
@@ -73,6 +73,10 @@ testing.suites.named<JvmTestSuite>("test") {
73
description = "Runs tests against Gradle $gradleVersionUnderTest"
74
systemProperty("gradleVersionUnderTest", gradleVersionUnderTest)
75
exclude("**/*SamplesTest.class") // Not yet cross-version ready
76
+ if (gradleVersionUnderTest == "7.4") {
77
+ // affected by long since bugs in gradle
78
+ exclude("**/*ConfigurationCacheTest.class")
79
+ }
80
exclude("**/initialization/**") // Settings plugin only for Gradle 8.8+
81
}
82
0 commit comments