hi i have the following:
@Testcontainers
@Slf4j
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
class IntegrationTestContainerSetup {
@Container
static final PostgreSQLContainer POSTGRES_CONTAINER = new......;
@Container
public static final S3MockContainer s3Container = new....
The above doest work for some reason, the postgresql never gets spun up., if i remove the s3 container outside into its own class and extend this as sub class to the new class. it works fine.. I dont understand why that would be the case.. can one class only have one container annotation?