9 lines
173 B
Python
Raw Normal View History

2025-11-10 15:46:40 +01:00
import pytest
import asyncio
@pytest.fixture(scope="session")
def event_loop():
loop = asyncio.get_event_loop_policy().new_event_loop()
yield loop
loop.close()