skip to Main Content

Cannot run DB Integration tests with Spring Boot and Testcontainers – Docker

I try to run DB Integration tests with Spring Boot and Testcontainers but without success I added testcontainer to my pom.xml <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>postgresql</artifactId> <version>1.10.6</version> <scope>test</scope> </dependency> Here is the extract of application.properties under test/resources…

VIEW QUESTION
Back To Top
Search