asv icon indicating copy to clipboard operation
asv copied to clipboard

Asyncio support

Open Yiling-J opened this issue 2 years ago • 1 comments

Is it possible to run asv with asyncio code? Just tried and python show the warning: RuntimeWarning: coroutine 'Suite.time_simple' was never awaited

class Suite:
    async def setup(self):
        ...
    async def time_simple(self):
        ...

Yiling-J avatar Jan 19 '23 03:01 Yiling-J