fix: disable sqlite-vec test (#1090)

# What does this PR do?
- sqlite_vec not added to all template yet, disable test for now to
unblock release cut

[//]: # (If resolving an issue, uncomment and update the line below)
[//]: # (Closes #[issue-number])

## Test Plan
<img width="846" alt="image"
src="https://github.com/user-attachments/assets/fa896497-f37c-4cdf-bc62-21893afbd392"
/>

[//]: # (## Documentation)
This commit is contained in:
Xi Yan 2025-02-13 18:40:16 -08:00 committed by GitHub
parent b0b696cb4f
commit b27c41fe39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,11 @@ import random
import pytest
INLINE_VECTOR_DB_PROVIDERS = ["faiss", "sqlite_vec"]
INLINE_VECTOR_DB_PROVIDERS = [
"faiss",
# TODO: add sqlite_vec to templates
# "sqlite_vec",
]
@pytest.fixture(scope="function")