From 08a007f234bbd95591cc3124f94f4b1269601b04 Mon Sep 17 00:00:00 2001 From: Mark Pollack Date: Sun, 3 Nov 2024 21:45:05 -0500 Subject: [PATCH] Disable Gemfire Vector Store integration tests Test are not reliable, often get the error Error: Failed to execute goal on project spring-ai-gemfire-store: Could not resolve dependencies for project org.springframework.ai:spring-ai-gemfire-store:jar:1.0.0-SNAPSHOT: Could not transfer artifact dev.gemfire:gemfire-testcontainers:jar:2.3.0 from/to maven-central (https://repo.maven.apache.org/maven2/): transfer failed for https://repo.maven.apache.org/maven2/dev/gemfire/gemfire-testcontainers/2.3.0/gemfire-testcontainers-2.3.0.jar, status: 429 -> [Help 1] --- .../springframework/ai/vectorstore/GemFireVectorStoreIT.java | 2 ++ .../ai/vectorstore/GemFireVectorStoreObservationIT.java | 2 ++ 2 files changed, 4 insertions(+) diff --git a/vector-stores/spring-ai-gemfire-store/src/test/java/org/springframework/ai/vectorstore/GemFireVectorStoreIT.java b/vector-stores/spring-ai-gemfire-store/src/test/java/org/springframework/ai/vectorstore/GemFireVectorStoreIT.java index 972352f6a..fd93afe05 100644 --- a/vector-stores/spring-ai-gemfire-store/src/test/java/org/springframework/ai/vectorstore/GemFireVectorStoreIT.java +++ b/vector-stores/spring-ai-gemfire-store/src/test/java/org/springframework/ai/vectorstore/GemFireVectorStoreIT.java @@ -30,6 +30,7 @@ import com.vmware.gemfire.testcontainers.GemFireCluster; import org.awaitility.Awaitility; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.springframework.ai.document.Document; @@ -50,6 +51,7 @@ import static org.hamcrest.Matchers.hasSize; * @author Thomas Vitale * @since 1.0.0 */ +@Disabled public class GemFireVectorStoreIT { public static final String INDEX_NAME = "spring-ai-index1"; diff --git a/vector-stores/spring-ai-gemfire-store/src/test/java/org/springframework/ai/vectorstore/GemFireVectorStoreObservationIT.java b/vector-stores/spring-ai-gemfire-store/src/test/java/org/springframework/ai/vectorstore/GemFireVectorStoreObservationIT.java index 47e924a24..4a780955a 100644 --- a/vector-stores/spring-ai-gemfire-store/src/test/java/org/springframework/ai/vectorstore/GemFireVectorStoreObservationIT.java +++ b/vector-stores/spring-ai-gemfire-store/src/test/java/org/springframework/ai/vectorstore/GemFireVectorStoreObservationIT.java @@ -31,6 +31,7 @@ import io.micrometer.observation.tck.TestObservationRegistryAssert; import org.awaitility.Awaitility; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.springframework.ai.document.Document; @@ -56,6 +57,7 @@ import static org.hamcrest.Matchers.hasSize; * @author Thomas Vitale * @author Soby Chacko */ +@Disabled public class GemFireVectorStoreObservationIT { public static final String TEST_INDEX_NAME = "spring-ai-index1";