Skip to content

Commit 2bfca71

Browse files
committed
test(integration): mark vector_search test as passing (RPC now wired)
VectorServiceImpl now executes Cypher with vector_distance() ORDER BY LIMIT instead of returning an empty stub response. Remove xfail marker.
1 parent 9839df0 commit 2bfca71

2 files changed

Lines changed: 3 additions & 7 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
name = "coordinode-workspace"
77
version = "0.0.0"
88
requires-python = ">=3.11"
9+
dependencies = [
10+
"googleapis-common-protos>=1.74.0",
11+
]
912

1013
[tool.uv]
1114
package = false # virtual root — not installed as a package

tests/integration/test_sdk.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -271,13 +271,6 @@ async def test_async_create_node():
271271
# ── Vector search (xfail until wired) ─────────────────────────────────────────
272272

273273

274-
@pytest.mark.xfail(
275-
reason=(
276-
"VectorServiceImpl is a stub — always returns []."
277-
" HNSW is implemented in coordinode-vector but not wired to the RPC handler."
278-
),
279-
strict=True,
280-
)
281274
def test_vector_search_returns_results(client):
282275
tag = uid()
283276
vec = [float(i) / 16 for i in range(16)]

0 commit comments

Comments
 (0)