From 201c583e545aea168aab527b92a5a11a4e86efa9 Mon Sep 17 00:00:00 2001 From: Lukas Rothenberger Date: Fri, 2 Aug 2024 09:29:46 +0200 Subject: [PATCH] fix: revert: show test output This reverts commit e8ea956ed4495d45d4c07be046984cc920a44a1a. --- test/utils/subprocess_wrapper/command_execution_wrapper.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/utils/subprocess_wrapper/command_execution_wrapper.py b/test/utils/subprocess_wrapper/command_execution_wrapper.py index 5c7d3e127..ec0a1b95d 100644 --- a/test/utils/subprocess_wrapper/command_execution_wrapper.py +++ b/test/utils/subprocess_wrapper/command_execution_wrapper.py @@ -2,13 +2,13 @@ from typing import Dict -def run_cmd(cmd: str, cwd: str, env): +def run_cmd(cmd: str, cwd: str, env: Dict[str, str]) -> None: subprocess.run( cmd, cwd=cwd, executable="/bin/bash", shell=True, env=env, - # stdout=subprocess.DEVNULL, - # stderr=subprocess.DEVNULL, + stdout=subprocess.DEVNULL, + stderr=subprocess.DEVNULL, )