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 a7dc6a4 commit b6c9da9Copy full SHA for b6c9da9
gradle/build-logic/src/main/kotlin/conventions.kotest.gradle.kts
@@ -43,6 +43,13 @@ kover {
43
44
tasks.withType<Test>().configureEach {
45
useJUnitPlatform()
46
+
47
// Don't cache tests, make them run again every time.
48
outputs.upToDateWhen { false }
49
50
+ // Pass along system properties for Kotest.
51
+ systemProperties = System.getProperties()
52
+ .asIterable()
53
+ .filter { it.key.toString().startsWith("kotest.") }
54
+ .associate { it.key.toString() to it.value }
55
}
0 commit comments