File size: 194 Bytes
d1ceb73 |
1 2 3 4 5 6 7 8 9 10 |
"""pytest configuration."""
import asyncio
import os
if os.name == "nt":
asyncio.set_event_loop_policy(
asyncio.WindowsSelectorEventLoopPolicy() # type:ignore[attr-defined]
)
|