Skip to content

Commit 4d3e888

Browse files
committed
Disable failOnNoDiscoveredTests for KotlinTest tasks in build.gradle.kts.
1 parent 0aca7a1 commit 4d3e888

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

kotest-native/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
2+
import org.jetbrains.kotlin.gradle.tasks.KotlinTest
23

34
plugins {
45
alias(libs.plugins.kotlin.multiplatform)
@@ -25,4 +26,9 @@ kotlin {
2526
}
2627
}
2728
}
29+
30+
tasks.withType<KotlinTest>().configureEach {
31+
failOnNoDiscoveredTests = false
32+
}
2833
}
34+

0 commit comments

Comments
 (0)