diff --git a/hail/python/test/hailtop/inter_cloud/test_copy.py b/hail/python/test/hailtop/inter_cloud/test_copy.py index 49a56dca2e5e..5c85195ac25e 100644 --- a/hail/python/test/hailtop/inter_cloud/test_copy.py +++ b/hail/python/test/hailtop/inter_cloud/test_copy.py @@ -74,18 +74,18 @@ async def router_filesystem( sema = asyncio.Semaphore(50) async with sema: yield (sema, fs, bases) - # await bounded_gather2( - # sema, - # functools.partial(fs.rmtree, sema, file_base), - # functools.partial(fs.rmtree, sema, gs_base), - # functools.partial(fs.rmtree, sema, s3_base), - # functools.partial(fs.rmtree, sema, azure_base), - # ) - - # assert not await fs.isdir(file_base) - # assert not await fs.isdir(gs_base) - # assert not await fs.isdir(s3_base) - # assert not await fs.isdir(azure_base) + await bounded_gather2( + sema, + functools.partial(fs.rmtree, sema, file_base), + functools.partial(fs.rmtree, sema, gs_base), + functools.partial(fs.rmtree, sema, s3_base), + functools.partial(fs.rmtree, sema, azure_base), + ) + + assert not await fs.isdir(file_base) + assert not await fs.isdir(gs_base) + assert not await fs.isdir(s3_base) + assert not await fs.isdir(azure_base) async def fresh_dir(fs, bases, scheme):