Skip to content

Commit

Permalink
fix: revert: show test output
Browse files Browse the repository at this point in the history
This reverts commit e8ea956.
  • Loading branch information
lukasrothenberger committed Aug 7, 2024
1 parent 8f39372 commit cecffbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/utils/subprocess_wrapper/command_execution_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit cecffbb

Please sign in to comment.