9 lines
149 B
Python
9 lines
149 B
Python
import pytest
|
|
import asyncio
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def event_loop():
|
|
loop = asyncio.new_event_loop()
|
|
yield loop
|
|
loop.close() |