9 lines
206 B
Python
9 lines
206 B
Python
from asyncio import AbstractEventLoopPolicy, DefaultEventLoopPolicy
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def event_loop_policy() -> AbstractEventLoopPolicy:
|
|
return DefaultEventLoopPolicy()
|