From c630a646e38336f4eeb9f44a88cbc832a068042f Mon Sep 17 00:00:00 2001 From: ChristianZaccaria Date: Fri, 29 Aug 2025 18:39:54 +0100 Subject: [PATCH] Add remote Weaviate in precomputed embeddings test --- tests/integration/vector_io/test_vector_io.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration/vector_io/test_vector_io.py b/tests/integration/vector_io/test_vector_io.py index 979eff6bb..c6c7f3c6b 100644 --- a/tests/integration/vector_io/test_vector_io.py +++ b/tests/integration/vector_io/test_vector_io.py @@ -138,8 +138,9 @@ def test_insert_chunks(client_with_empty_registry, embedding_model_id, embedding def test_insert_chunks_with_precomputed_embeddings(client_with_empty_registry, embedding_model_id, embedding_dimension): vector_io_provider_params_dict = { "inline::milvus": {"score_threshold": -1.0}, - "remote::qdrant": {"score_threshold": -1.0}, "inline::qdrant": {"score_threshold": -1.0}, + "remote::qdrant": {"score_threshold": -1.0}, + "remote::weaviate": {"score_threshold": -1.0}, } vector_db_name = "test_precomputed_embeddings_db" register_response = client_with_empty_registry.vector_dbs.register(