Co-authored-by: Sergey Vanyushkin <pi3c@yandex.ru> Co-committed-by: Sergey Vanyushkin <pi3c@yandex.ru>
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()
|