Skip to content

Commit 0c246ae

Browse files
committed
fix(test): correct xfail reason for test_vector_search
VectorServiceImpl is a stub in server/src/services/vector.rs that always returns []. HNSW algorithm is implemented (coordinode-vector crate) but not wired to the RPC handler. Tracked as G007 in GAPS.md.
1 parent c988e75 commit 0c246ae

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

tests/integration/test_basic.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,11 @@ def test_create_and_get_node(client):
5959

6060

6161
@pytest.mark.xfail(
62-
reason="Vector index not yet implemented in alpha server — returns empty results",
62+
reason=(
63+
"VectorServiceImpl is a stub in server/src/services/vector.rs — always returns []."
64+
" HNSW algorithm (coordinode-vector crate) is implemented, but not wired to the RPC handler."
65+
" Tracked as gap G007 in coordinode-python GAPS.md."
66+
),
6367
strict=False,
6468
)
6569
def test_vector_search(client):

0 commit comments

Comments
 (0)