Warning: Kotest autoscan is enabled. This means Kotest will scan the classpath for extensions that are annotated with @AutoScan. To avoid this startup cost, set autoscan to false by setting the system property 'kotest.framework.classpath.scanning.config.disable=true'. For further details see <https://kotest.io/docs/next/framework/project-config.html#runtime-detection>
I'm setting
Copy code
tasks.withType<Test>().configureEach {
systemProperties = mapOf(
"kotest.framework.classpath.scanning.config.disable" to "true"
)
}
in my Gradle build file, but I'm still seeing the message.Am I correct to assume that this should work?