File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 44# pylint: disable=unused-argument
55# pylint: disable=unused-variable
66
7- import asyncio
87import json
98import logging
109import os
1110import time
12- from collections .abc import Callable , Iterable , Iterator
11+ from collections .abc import Callable , Iterator
1312from pprint import pformat
1413
1514import httpx
@@ -75,17 +74,8 @@ def ops_services_selection(ops_docker_compose: dict) -> list[str]:
7574 return all_ops_services
7675
7776
78- @pytest .fixture (scope = "module" )
79- def event_loop (request : pytest .FixtureRequest ) -> Iterable [asyncio .AbstractEventLoop ]:
80- """Overrides pytest_asyncio.event_loop and extends to module scope"""
81- loop = asyncio .get_event_loop_policy ().new_event_loop ()
82- yield loop
83- loop .close ()
84-
85-
8677@pytest .fixture (scope = "module" )
8778def simcore_docker_stack_and_registry_ready (
88- event_loop : asyncio .AbstractEventLoop ,
8979 docker_registry : UrlStr ,
9080 docker_stack : StacksDeployedDict ,
9181 simcore_services_ready_module : None ,
You can’t perform that action at this time.
0 commit comments