3232
3333pytest_simcore_core_services_selection = [
3434 "rabbit" ,
35+ "redis" ,
3536]
3637pytest_simcore_ops_services_selection = [
3738 "redis-commander" ,
@@ -135,12 +136,12 @@ def __init__(
135136 self ,
136137 remote_process : _RemoteProcess ,
137138 rabbit_service : RabbitSettings ,
138- redis_settings : RedisSettings ,
139+ redis_service : RedisSettings ,
139140 max_workers : int ,
140141 ) -> None :
141142 self .remote_process = remote_process
142143 self .rabbit_service = rabbit_service
143- self .redis_settings = redis_settings
144+ self .redis_service = redis_service
144145 self .max_workers = max_workers
145146
146147 async def __aenter__ (self ) -> "_RemoteProcessLifecycleManager" :
@@ -167,7 +168,7 @@ async def start(self) -> None:
167168 ),
168169 "redis" : json_dumps (
169170 model_dump_with_secrets (
170- self .redis_settings ,
171+ self .redis_service ,
171172 show_secrets = True ,
172173 ** _get_serialization_options (),
173174 )
@@ -255,7 +256,7 @@ async def _sleep_in_interval(lower: NonNegativeFloat, upper: NonNegativeFloat) -
255256async def test_workflow_with_outages_in_process_running_deferred_manager (
256257 get_remote_process : Callable [[], Awaitable [_RemoteProcess ]],
257258 rabbit_service : RabbitSettings ,
258- use_in_memory_redis : RedisSettings ,
259+ redis_service : RedisSettings ,
259260 remote_processes : int ,
260261 max_workers : int ,
261262 deferred_tasks_to_start : NonNegativeInt ,
@@ -268,7 +269,7 @@ async def test_workflow_with_outages_in_process_running_deferred_manager(
268269 _RemoteProcessLifecycleManager (
269270 await get_remote_process (),
270271 rabbit_service ,
271- use_in_memory_redis ,
272+ redis_service ,
272273 max_workers ,
273274 )
274275 )
@@ -402,7 +403,7 @@ async def test_workflow_with_third_party_services_outages(
402403 rabbit_client : RabbitMQClient ,
403404 get_remote_process : Callable [[], Awaitable [_RemoteProcess ]],
404405 rabbit_service : RabbitSettings ,
405- use_in_memory_redis : RedisSettings ,
406+ redis_service : RedisSettings ,
406407 max_workers : int ,
407408 deferred_tasks_to_start : int ,
408409 service : str ,
@@ -414,7 +415,7 @@ async def test_workflow_with_third_party_services_outages(
414415 async with _RemoteProcessLifecycleManager (
415416 await get_remote_process (),
416417 rabbit_service ,
417- use_in_memory_redis ,
418+ redis_service ,
418419 max_workers ,
419420 ) as manager :
420421 # start all in parallel
0 commit comments