forked from phoenix-oss/llama-stack-mirror
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:
parent
b0b696cb4f
commit
b27c41fe39
1 changed files with 5 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue