File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
src/functionalTest/kotlin/kotlinx/validation/test Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,7 @@ class JvmProjectTests : BaseKotlinGradleTest() {
19
19
resolve(" /examples/gradle/base/withPlugin.gradle.kts" )
20
20
resolve(" /examples/gradle/configuration/generatedSources/generatedJvmSources.gradle.kts" )
21
21
}
22
- // TODO: enable configuration cache back when we start skipping tasks correctly
23
- runner(withConfigurationCache = false ) {
22
+ runner {
24
23
arguments.add(" :apiDump" )
25
24
}
26
25
}
@@ -42,8 +41,7 @@ class JvmProjectTests : BaseKotlinGradleTest() {
42
41
apiFile(projectName = rootProjectDir.name) {
43
42
resolve(" /examples/classes/GeneratedSources.dump" )
44
43
}
45
- // TODO: enable configuration cache back when we start skipping tasks correctly
46
- runner(withConfigurationCache = false ) {
44
+ runner {
47
45
arguments.add(" :apiCheck" )
48
46
}
49
47
}
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ package kotlinx.validation.test
7
7
8
8
import kotlinx.validation.api.*
9
9
import org.assertj.core.api.Assertions.assertThat
10
- import org.gradle.testkit.runner.TaskOutcome
11
10
import org.junit.Test
12
11
import java.io.File
13
12
You can’t perform that action at this time.
0 commit comments