Skip to content

Commit

Permalink
Disable MonogDB ITs due to #698
Browse files Browse the repository at this point in the history
  • Loading branch information
tzolov committed Aug 20, 2024
1 parent e881fef commit 7afc2b5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import java.util.List;
import java.util.stream.Collectors;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable;
import org.springframework.ai.autoconfigure.openai.OpenAiAutoConfiguration;
Expand Down Expand Up @@ -52,6 +53,7 @@
*/
@Testcontainers
@EnabledIfEnvironmentVariable(named = "OPENAI_API_KEY", matches = ".+")
@Disabled("Disabled due to https://github.com/spring-projects/spring-ai/issues/698")
class MongoDBAtlasVectorStoreAutoConfigurationIT {

@Container
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* @author Chris Smith
*/
@Testcontainers
// @Disabled("Disabled due to https://github.com/spring-projects/spring-ai/issues/698")
@Disabled("Disabled due to https://github.com/spring-projects/spring-ai/issues/698")
class MongoDBAtlasVectorStoreIT {

@Container
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import java.util.Vector;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable;
import org.springframework.ai.document.Document;
Expand Down Expand Up @@ -54,6 +55,7 @@
*/
@Testcontainers
@EnabledIfEnvironmentVariable(named = "OPENAI_API_KEY", matches = ".+")
@Disabled("Disabled due to https://github.com/spring-projects/spring-ai/issues/698")
public class MongoDbVectorStoreObservationIT {

@Container
Expand Down

0 comments on commit 7afc2b5

Please sign in to comment.