Merge pull request #74 from mwidera/fix-rf-stdout-stderr

Fix for subprocess call for Robot Framework execution
merge-requests/1/head
Spikeophant 5 years ago committed by GitHub
commit a33aebce1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -288,6 +288,9 @@ class Terraform(object):
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

Loading…
Cancel
Save