Added tests + docs + CI for Elasticsearch

This commit is contained in:
Enrico Zimuel 2025-10-31 18:18:27 +01:00
parent 6f39c8994d
commit 22b27e6275
No known key found for this signature in database
GPG key ID: 6CB203F6934A69F1
9 changed files with 215 additions and 112 deletions

View file

@ -368,15 +368,7 @@ def vector_provider_wrapper(func):
all_providers = ["faiss", "sqlite-vec"]
else:
# For live tests, try all providers (they'll skip if not available)
all_providers = [
"faiss",
"sqlite-vec",
"milvus",
"chromadb",
"pgvector",
"weaviate",
"qdrant",
]
all_providers = ["faiss", "sqlite-vec", "milvus", "chromadb", "pgvector", "weaviate", "qdrant", "elasticsearch"]
return pytest.mark.parametrize("vector_io_provider_id", all_providers)(wrapper)