File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -8,3 +8,11 @@ dependencies {
8
8
implementation(libs.kotest.api)
9
9
implementation(libs.kotest.assertions)
10
10
}
11
+
12
+ tasks.withType<Test >().configureEach {
13
+ systemProperties(
14
+ " kotest.framework.config.fqn" to " io.github.jadarma.aockt.test.TestConfig" ,
15
+ " kotest.framework.classpath.scanning.config.disable" to true ,
16
+ " kotest.framework.classpath.scanning.autoscan.disable" to true ,
17
+ )
18
+ }
Original file line number Diff line number Diff line change @@ -20,4 +20,7 @@ object TestConfig : AbstractProjectConfig() {
20
20
21
21
@ExperimentalKotest
22
22
override val concurrentSpecs: Int = cores
23
+
24
+ // https://kotest.io/docs/framework/test_output.html
25
+ override var displayFullTestPath: Boolean? = System .getenv(" CI" ).toBoolean()
23
26
}
You can’t perform that action at this time.
0 commit comments