spring-boot-docker-compose skips loading containers in Kotest
Gradle 8.7 Java 17 SpringBoot 3.2.5 Kotlin 1.9.22 Kotest 5.8.1 Kotest Extensions Spring 1.1.3 Test class configuration: @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) @AutoConfigureObservability class IntegrationFreeSpec : FreeSpec() { override fun extensions() = listOf(SpringExtension) … When test application starts, I see that in DockerComposeLifecycleManager‘s start() method skipCheck.shouldSkip(…) check evaluates to true, so the method exits. Inside the shouldSkip(…) […]