Skip to content
Snippets Groups Projects
Commit a446c324 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

RF: Change default behaviour of run function so that stdout/stderr are

forwarded to parent process in addition to being captured and returned (#373)
parent d69636f4
No related branches found
No related tags found
No related merge requests found
...@@ -152,12 +152,14 @@ def run(*args, **kwargs): ...@@ -152,12 +152,14 @@ def run(*args, **kwargs):
executed, but rather is returned directly, as a list of executed, but rather is returned directly, as a list of
arguments. arguments.
:arg log: Must be passed as a keyword argument. An optional ``dict`` :arg log: Must be passed as a keyword argument. Defaults to
which may be used to redirect the command's standard output ``{'tee' : True}``. An optional ``dict`` which may be used
and error. The following keys are recognised: to redirect the command's standard output and error. The
following keys are recognised:
- tee: If ``True``, the command's standard output/error - tee: If ``True`` (the default), the command's
streams are forwarded to this processes streams. standard output/error streams are forwarded to
this processes streams.
- stdout: Optional file-like object to which the command's - stdout: Optional file-like object to which the command's
standard output stream can be forwarded. standard output stream can be forwarded.
...@@ -189,7 +191,7 @@ def run(*args, **kwargs): ...@@ -189,7 +191,7 @@ def run(*args, **kwargs):
if logg is None: if logg is None:
logg = {} logg = {}
tee = logg.get('tee', False) tee = logg.get('tee', True)
logStdout = logg.get('stdout', None) logStdout = logg.get('stdout', None)
logStderr = logg.get('stderr', None) logStderr = logg.get('stderr', None)
logCmd = logg.get('cmd', None) logCmd = logg.get('cmd', None)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment