1 import asyncio 2 import pytest 3 4 5 pytestmark = pytest.mark.asyncio 6 7 8 async def my_coroutine() -> float: 9 await asyncio.sleep(0.1) ...
確定! 回上一頁