From 427f53073a4356b8d7310cf43c7d8ff5b89aa527 Mon Sep 17 00:00:00 2001 From: Roman Date: Tue, 25 Mar 2025 16:45:44 -0700 Subject: [PATCH] use arguments instead of whole request object --- tests/e2e_tests/conftest.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/e2e_tests/conftest.py b/tests/e2e_tests/conftest.py index c8265c275a..e0afea8a88 100644 --- a/tests/e2e_tests/conftest.py +++ b/tests/e2e_tests/conftest.py @@ -77,7 +77,7 @@ def local_chain(request): logging.warning("Docker not found in the operating system!") logging.warning(docker_command) logging.warning("Tests are run in legacy mode.") - yield from legacy_runner(request) + yield from legacy_runner(params) def legacy_runner(params): @@ -95,7 +95,6 @@ def legacy_runner(params): # Compile commands to send to process cmds = shlex.split(f"{script_path} {args}") - with subprocess.Popen( cmds, start_new_session=True,