Skip to content

Commit

Permalink
Merge pull request #307 from mulkieran/pipe-stderr
Browse files Browse the repository at this point in the history
Pipe stderr on call
  • Loading branch information
mulkieran authored Jan 23, 2025
2 parents 207298f + c9204ec commit c5dc806
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions testlib/infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ def run_check(self, stop_time): # pylint: disable=too-many-locals
temp_file.name,
],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
) as proc:
(stdoutdata, stderrdata) = proc.communicate()
self.assertEqual(
Expand Down

0 comments on commit c5dc806

Please sign in to comment.