Merge pull request #74 from mwidera/fix-rf-stdout-stderr
Fix for subprocess call for Robot Framework execution
This commit is contained in:
commit
a33aebce1c
1 changed files with 3 additions and 0 deletions
|
@ -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…
Reference in a new issue