Skip to content

Commit

Permalink
Merge pull request #74 from mwidera/fix-rf-stdout-stderr
Browse files Browse the repository at this point in the history
Fix for subprocess call for Robot Framework execution
  • Loading branch information
Spikeophant authored Nov 7, 2019
2 parents bda8b97 + 632b653 commit a33aebc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python_terraform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,9 @@ def cmd(self, cmd, *args, **kwargs):
if capture_output is True:
stderr = subprocess.PIPE
stdout = subprocess.PIPE
elif capture_output == "framework":
stderr = None
stdout = None
else:
stderr = sys.stderr
stdout = sys.stdout
Expand Down

0 comments on commit a33aebc

Please sign in to comment.