diff --git a/integration-tests/redis-devservices/pom.xml b/integration-tests/redis-devservices/pom.xml index 011d7181492d1..c7edb907d5dc2 100644 --- a/integration-tests/redis-devservices/pom.xml +++ b/integration-tests/redis-devservices/pom.xml @@ -1,91 +1,118 @@ - - 4.0.0 - - io.quarkus - quarkus-integration-tests-parent - 999-SNAPSHOT - ../pom.xml - - quarkus-integration-test-redis-devservices - Quarkus - Integration Tests - Redis DevService + + 4.0.0 + + io.quarkus + quarkus-integration-tests-parent + 999-SNAPSHOT + ../pom.xml + + quarkus-integration-test-redis-devservices + Quarkus - Integration Tests - Redis DevService - - - io.quarkus - quarkus-redis-client - - - io.quarkus - quarkus-arc - - - io.quarkus - quarkus-junit5 - test - - - - io.quarkus - quarkus-redis-client-deployment - ${project.version} - pom - test - - - * - * - - - - - io.quarkus - quarkus-arc-deployment - ${project.version} - pom - test - - - * - * - - - - + + + io.quarkus + quarkus-redis-client + + + io.quarkus + quarkus-arc + + + io.quarkus + quarkus-junit5 + test + + + + io.quarkus + quarkus-redis-client-deployment + ${project.version} + pom + test + + + * + * + + + + + io.quarkus + quarkus-arc-deployment + ${project.version} + pom + test + + + * + * + + + + - - - - src/main/resources - true - - - - - maven-surefire-plugin - - true - - - - maven-failsafe-plugin - - true - - - - io.quarkus - quarkus-maven-plugin - - - - build - - - - - - + + + + src/main/resources + true + + + + + maven-surefire-plugin + + true + + + + maven-failsafe-plugin + + true + + + + io.quarkus + quarkus-maven-plugin + + + + build + + + + + + + + + + + test-redis + + + test-containers + + + + + + maven-surefire-plugin + + false + + + + maven-failsafe-plugin + + false + + + + + + - + \ No newline at end of file diff --git a/integration-tests/redis-devservices/src/test/java/io/quarkus/redis/devservices/it/DevServicesRedisDisabledITest.java b/integration-tests/redis-devservices/src/test/java/io/quarkus/redis/devservices/it/DevServicesRedisDisabledITest.java deleted file mode 100644 index 2d3d741595736..0000000000000 --- a/integration-tests/redis-devservices/src/test/java/io/quarkus/redis/devservices/it/DevServicesRedisDisabledITest.java +++ /dev/null @@ -1,22 +0,0 @@ -package io.quarkus.redis.devservices.it; - -import org.junit.jupiter.api.Assertions; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; - -import io.quarkus.redis.devservices.it.profiles.DevServicesDisabledProfile; -import io.quarkus.redis.devservices.it.utils.SocketKit; -import io.quarkus.test.junit.QuarkusTest; -import io.quarkus.test.junit.TestProfile; - -@QuarkusTest -@TestProfile(DevServicesDisabledProfile.class) -public class DevServicesRedisDisabledITest { - - @Test - @DisplayName("should not start the redis container when devservices is disabled") - public void shouldStartRedisContainer() { - Assertions.assertFalse(SocketKit.isPortAlreadyUsed(6379)); - } - -}