From e44f9dcd711b80c41ed991e15d4845c74509dfba Mon Sep 17 00:00:00 2001 From: Francisco Javier Arceo Date: Tue, 1 Jul 2025 15:36:55 -0400 Subject: [PATCH] updating skip Signed-off-by: Francisco Javier Arceo --- tests/integration/vector_io/test_openai_vector_stores.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/vector_io/test_openai_vector_stores.py b/tests/integration/vector_io/test_openai_vector_stores.py index e961ac5ec..75bb2c10d 100644 --- a/tests/integration/vector_io/test_openai_vector_stores.py +++ b/tests/integration/vector_io/test_openai_vector_stores.py @@ -31,7 +31,7 @@ def skip_if_provider_doesnt_support_openai_vector_stores(client_with_models): def skip_if_provider_doesnt_support_openai_vector_store_files_api(client_with_models): vector_io_providers = [p for p in client_with_models.providers.list() if p.api == "vector_io"] for p in vector_io_providers: - if p.provider_type in ["inline::faiss", "inline::sqlite-vec"]: + if p.provider_type in ["inline::faiss", "inline::sqlite-vec", "inlihne::milvus"]: return pytest.skip("OpenAI vector stores are not supported by any provider")