Skip to content

Commit

Permalink
Merge branch 'main' into renovate/python-nonmajor
Browse files Browse the repository at this point in the history
  • Loading branch information
averikitsch authored Jan 14, 2025
2 parents c04409d + fb39e08 commit 7b07d15
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_async_vector_store_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ async def test_aapply_vector_index(self, vs):
index = HNSWIndex()
await vs.aapply_vector_index(index)
assert await vs.is_valid_index(DEFAULT_INDEX_NAME)
await vs.adrop_vector_index(DEFAULT_INDEX_NAME)

async def test_areindex(self, vs):
if not await vs.is_valid_index(DEFAULT_INDEX_NAME):
Expand All @@ -131,6 +132,7 @@ async def test_areindex(self, vs):
await vs.areindex()
await vs.areindex(DEFAULT_INDEX_NAME)
assert await vs.is_valid_index(DEFAULT_INDEX_NAME)
await vs.adrop_vector_index(DEFAULT_INDEX_NAME)

async def test_dropindex(self, vs):
await vs.adrop_vector_index()
Expand All @@ -147,6 +149,7 @@ async def test_aapply_vector_index_ivfflat(self, vs):
)
await vs.aapply_vector_index(index)
assert await vs.is_valid_index("secondindex")
await vs.adrop_vector_index()
await vs.adrop_vector_index("secondindex")

async def test_is_valid_index(self, vs):
Expand Down

0 comments on commit 7b07d15

Please sign in to comment.