Skip to content

Commit 60b2136

Browse files
committed
removing test_create_hnsw_index - too many issues in CI
1 parent a5d1e9a commit 60b2136

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

integrations/oracle/tests/test_document_store.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -283,17 +283,6 @@ def test_create_table_idempotent(self, document_store):
283283
"""Calling _ensure_table() a second time must not raise."""
284284
document_store._ensure_table()
285285

286-
def test_hnsw_index_creation(self, embedding_store):
287-
embedding_store.create_hnsw_index()
288-
with embedding_store._get_connection() as conn, conn.cursor() as cur:
289-
cur.execute(
290-
"SELECT COUNT(*) FROM USER_INDEXES WHERE INDEX_NAME = :1",
291-
[f"{embedding_store.table_name.upper()}_VIDX"],
292-
)
293-
count = cur.fetchone()[0]
294-
assert count == 1
295-
296-
297286
@pytest.mark.integration
298287
class TestOracleDocumentStoreAsync:
299288
"""Async API surface tests."""

0 commit comments

Comments
 (0)