9 lines
138 B
Python
9 lines
138 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def event_loop_policy():
|
|
import asyncio
|
|
|
|
return asyncio.DefaultEventLoopPolicy()
|