Skip to content

Commit

Permalink
Work around kover bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed May 4, 2023
1 parent 983bc1b commit eb2c710
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion slack-plugin/src/main/kotlin/slack/unittest/UnitTests.kt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@ internal object UnitTests {
if (
slackProperties.ciUnitTestEnableKover && project.path != slackProperties.platformProjectPath
) {
project.pluginManager.apply("org.jetbrains.kotlinx.kover")
project.afterEvaluate {
// Remove afterEvaluate
// after https://github.com/Kotlin/kotlinx-kover/issues/362 is fixed
project.pluginManager.apply("org.jetbrains.kotlinx.kover")
}
}

val globalTask =
Expand Down

0 comments on commit eb2c710

Please sign in to comment.