We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b49acfc commit 463f988Copy full SHA for 463f988
tests/conftest.py
@@ -1,4 +1,3 @@
1
-import asyncio
2
import functools
3
from pathlib import PurePath, PurePosixPath, PureWindowsPath
4
from uuid import uuid4
@@ -34,11 +33,3 @@ def fixture_model_with_path(request):
34
33
@pytest.fixture
35
def random_type():
36
return type(f"Random{uuid4().hex[:6]}", (), {})
37
-
38
39
-@pytest.fixture(autouse=True, scope="session")
40
-def event_loop():
41
- loop = asyncio.new_event_loop()
42
- asyncio.set_event_loop(loop)
43
- yield loop
44
- loop.close()
0 commit comments