Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ async def test_crud_batch_operations_container(vector_store_record_collection):
["definition_pandas"],
indirect=True,
)
@mark.asyncio
async def test_crud_operations_pandas(vector_store_record_collection):
id = "test_id"
record = DataFrame([{"id": id, "content": "test_content", "vector": [1.0, 2.0, 3.0]}])
Expand All @@ -198,6 +199,7 @@ async def test_crud_operations_pandas(vector_store_record_collection):
["definition_pandas"],
indirect=True,
)
@mark.asyncio
async def test_crud_batch_operations_pandas(vector_store_record_collection):
ids = ["test_id_1", "test_id_2"]

Expand Down
Loading