diff options
Diffstat (limited to 'test_pytest/conftest.py')
| -rw-r--r-- | test_pytest/conftest.py | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/test_pytest/conftest.py b/test_pytest/conftest.py index 866d3ce..91f389b 100644 --- a/test_pytest/conftest.py +++ b/test_pytest/conftest.py @@ -1,17 +1,5 @@ -import pytest - from hat import aio -loop = None - - -@pytest.fixture(scope='session') -def event_loop(): - yield loop - loop.close() - - def pytest_configure(config): - global loop - loop = aio.init_asyncio() + aio.init_asyncio() |
