Disable OracleVectorStore and Ollama IT tests

This commit is contained in:
Mark Pollack
2024-11-03 18:55:09 -05:00
parent 0d2d4b7385
commit ff41a1a529
3 changed files with 4 additions and 2 deletions

View File

@@ -51,7 +51,7 @@ public class BaseOllamaIT {
* to the file ".testcontainers.properties" located in your home directory
*/
public static boolean isDisabled() {
return false;
return true;
}
public static OllamaApi buildOllamaApi() {

View File

@@ -60,7 +60,7 @@ public class BaseOllamaIT {
* to the file ".testcontainers.properties" located in your home directory
*/
public static boolean isDisabled() {
return false;
return true;
}
public static String buildConnectionWithModel(String model) {

View File

@@ -28,6 +28,7 @@ import javax.sql.DataSource;
import oracle.jdbc.pool.OracleDataSource;
import org.junit.Assert;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvSource;
import org.junit.jupiter.params.provider.ValueSource;
@@ -57,6 +58,7 @@ import org.springframework.util.CollectionUtils;
import static org.assertj.core.api.Assertions.assertThat;
@Testcontainers
@Disabled("Oracle image is 2GB")
public class OracleVectorStoreIT {
@Container