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 c1a7978 commit 68fc818Copy full SHA for 68fc818
build.gradle.kts
@@ -137,8 +137,11 @@ tasks.named<DependencyUpdatesTask>("dependencyUpdates") {
137
reportfileName = "report"
138
}
139
140
-
141
142
143
+kover {
+ isEnabled = true // false to disable instrumentation of all test tasks in all modules
+ coverageEngine.set(kotlinx.kover.api.CoverageEngine.INTELLIJ) // change instrumentation agent and reporter
+//sa intellijEngineVersion.set("1.0.637") // change version of IntelliJ agent and reporter
144
+// jacocoEngineVersion.set("0.8.7") // change version of JaCoCo agent and reporter
145
+// generateReportOnCheck.set(true) // false to do not execute `koverReport` task before `check` task
146
+}
147
0 commit comments