Skip to content

Commit

Permalink
Removing async test because I was getting an event loop issue
Browse files Browse the repository at this point in the history
  • Loading branch information
synedra committed Feb 28, 2024
1 parent b02b982 commit 7f31f55
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions tests/idiomatic/integration/test_ddl_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,6 @@ async def test_collection_lifecycle_async(
assert col1 == col2
await async_database.drop_collection(TEST_LOCAL_COLLECTION_NAME)

@pytest.mark.describe("should create and destroy a vector collection using collection drop (async)")
async def async_test_create_destroy_collection(self, async_database: AsyncDatabase) -> None:
col = await async_database.create_collection(
name="test_col_drop", dimension=2
)
assert isinstance(col, AsyncCollection)
del_res = await col.drop(
"test_col_drop"
)
assert del_res["status"]["ok"] == 1

@pytest.mark.describe("test of Database list_collections, async")
async def test_database_list_collections_async(
Expand Down

0 comments on commit 7f31f55

Please sign in to comment.