diff --git a/test/utils/subprocess_wrapper/command_execution_wrapper.py b/test/utils/subprocess_wrapper/command_execution_wrapper.py index b7e61e505..93ca4e370 100644 --- a/test/utils/subprocess_wrapper/command_execution_wrapper.py +++ b/test/utils/subprocess_wrapper/command_execution_wrapper.py @@ -9,6 +9,6 @@ def run_cmd(cmd: str, cwd: str, env): executable="/bin/bash", shell=True, env=env, -# stdout=subprocess.DEVNULL, -# stderr=subprocess.DEVNULL, + stdout=subprocess.DEVNULL, + stderr=subprocess.DEVNULL, )