-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Gradle configuration cache support
Resolves #142 - all inputs for Gradle beans (tasks, actions, extensions, etc.) are serializable - there is no direct access to the Project instance during the task execution, only a call from providers is allowed
- Loading branch information
Showing
12 changed files
with
145 additions
and
113 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/functionalTest/kotlin/kotlinx/kover/test/functional/cases/ConfigurationCacheTests.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package kotlinx.kover.test.functional.cases | ||
|
||
import kotlinx.kover.test.functional.core.* | ||
import kotlin.test.* | ||
|
||
internal class ConfigurationCacheTests: BaseGradleScriptTest() { | ||
@Test | ||
fun testConfigCache() { | ||
builder("Testing configuration cache support") | ||
.sources("simple") | ||
.build() | ||
.run("build", "koverMergedReport", "koverMergedVerify", "koverReport", "koverVerify", "--configuration-cache") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.