Disable brittle IT that pulls models from hugging face for Ollama

This commit is contained in:
Mark Pollack
2024-12-09 09:37:43 -05:00
parent aae4d24f09
commit 87d5112fe0

View File

@@ -21,6 +21,7 @@ import java.time.Duration;
import java.util.List;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.ai.ollama.BaseOllamaIT;
@@ -61,6 +62,7 @@ class OllamaModelManagerIT extends BaseOllamaIT {
}
@Test
@Disabled("This test is brittle and fails often in CI")
public void pullAndDeleteModelFromOllama() {
// Pull model with explicit version.
var modelWithExplicitVersion = "all-minilm:33m";