Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions tests/e2e_tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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,
Expand Down
Loading