Skip to content

Commit

Permalink
FIx pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
aragilar committed Oct 7, 2019
1 parent a1ed0b1 commit 97d99b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/upload_coverage.py
Expand Up @@ -9,7 +9,7 @@
import platform
from pprint import pprint
import shlex
from subprocess import run
from subprocess import run, PIPE
import sys

THIS_FILE = Path(__file__)
Expand All @@ -33,7 +33,7 @@ def run_with_python(args, **kwargs):
exe = []
cmd = exe + args
msg("Running:", *cmd)
res = run(cmd, check=True, capture_output=True, **kwargs)
res = run(cmd, check=True, stdout=PIPE, stderr=PIPE, **kwargs)
msg("STDOUT:")
msg(res.stdout)
msg("STDERR:")
Expand Down

0 comments on commit 97d99b7

Please sign in to comment.