File tree Expand file tree Collapse file tree
src/functionalTest/kotlin/io/github/sgtsilvio/gradle/oci Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,12 @@ internal class ConfigurationCacheTest {
2020 val result = GradleRunner .create()
2121 .withProjectDir(projectDir)
2222 .withPluginClasspath()
23- .withArguments(" test" , " --configuration-cache" , " -Dorg.gradle.kotlin.dsl.scriptCompilationAvoidance=false" )
23+ .withArguments(
24+ " test" ,
25+ " --configuration-cache" ,
26+ " -Dorg.gradle.configuration-cache.parallel=true" ,
27+ " -Dorg.gradle.kotlin.dsl.scriptCompilationAvoidance=false" ,
28+ )
2429 .build()
2530
2631 assertTrue(result.output.contains(" Configuration cache entry stored" ))
@@ -38,7 +43,12 @@ internal class ConfigurationCacheTest {
3843 val result2 = GradleRunner .create()
3944 .withProjectDir(projectDir)
4045 .withPluginClasspath()
41- .withArguments(" test" , " --configuration-cache" , " -Dorg.gradle.kotlin.dsl.scriptCompilationAvoidance=false" )
46+ .withArguments(
47+ " test" ,
48+ " --configuration-cache" ,
49+ " -Dorg.gradle.configuration-cache.parallel=true" ,
50+ " -Dorg.gradle.kotlin.dsl.scriptCompilationAvoidance=false" ,
51+ )
4252 .build()
4353
4454 assertTrue(result2.output.contains(" Configuration cache entry reused" ))
You can’t perform that action at this time.
0 commit comments