summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-05-31 15:18:06 +0300
committerLars Wirzenius <liw@liw.fi>2015-05-31 15:18:06 +0300
commita2acae82c07e1d46badf2285303ec3a25a7855f8 (patch)
tree85b28ecebd58fad26f863af427410b01476bd6fc
parenta5ed9ca57067e108f4bf48ee4bb23c842e1172b8 (diff)
downloadcliapp-a2acae82c07e1d46badf2285303ec3a25a7855f8.tar.gz
Mark outside test coverage
-rw-r--r--cliapp/runcmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cliapp/runcmd.py b/cliapp/runcmd.py
index 799a488..9d207f6 100644
--- a/cliapp/runcmd.py
+++ b/cliapp/runcmd.py
@@ -188,7 +188,7 @@ def _run_pipeline(procs, feed_stdin, pipe_stdin, pipe_stdout, pipe_stderr,
if p.returncode is None:
return True
if pipe_stdout == subprocess.PIPE and not stdout_eof:
- return True
+ return True # pragma: no cover
if pipe_stderr == subprocess.PIPE and not stderr_eof:
return True # pragma: no cover
return False