diff options
| author | Scott Gasch <[email protected]> | 2022-06-02 10:57:38 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-06-02 10:57:38 -0700 |
| commit | 11f8eba52154d14a05df6e64067b6645e3dca3b2 (patch) | |
| tree | 8cc2797dc2afb78ce6b03afbc8704d8bfda8835e /exec_utils.py | |
| parent | a0722abe80c416e0c174f3ff861566834402d43b (diff) | |
Update run_tests.py.
Diffstat (limited to 'exec_utils.py')
| -rw-r--r-- | exec_utils.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/exec_utils.py b/exec_utils.py index 7f23ecd..7e45d92 100644 --- a/exec_utils.py +++ b/exec_utils.py @@ -123,7 +123,9 @@ def cmd(command: str, timeout_seconds: Optional[float] = None) -> str: ret = subprocess.run( command, shell=True, - capture_output=True, + # capture_output=True, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, check=True, timeout=timeout_seconds, ).stdout |
