This message was deleted.
# configuration-cache
s
This message was deleted.
n
Using Gradle 7.4
r
This seems like an issue on Jetbrains's side, you're probably better served by the Kotlin slack, there's a #code-coverage channel. Unless this is about the "incremental" configuration cache feature.
p
notCompatibleWithConfigurationCache()
will make the problems to not fail the build and disable CC but the problems are still reported
koverMergedHtmlReport
is not the only task that has problems, you should mark the others as not compatible
n
Thanks
I added the following but it still fails the build
Copy code
listOf(
    ":koverMergedHtmlReport",
    ":koverMergedXmlReport",
    ":koverVerify",
    ":utils:common:koverVerify",
    ":utils:common:test",
).forEach {
    tasks.getByPath(it).notCompatibleWithConfigurationCache("Don't know")
}
looks like I missed one!
:koverMergedVerify
perhaps the error message should specify which problems were ignored and which weren’t.
I filed a feature request with Kover: https://github.com/Kotlin/kotlinx-kover/issues/142
👍 2