Skip to content

Commit

Permalink
run uses bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
aragilar committed Oct 7, 2019
1 parent 97d99b7 commit 1454220
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/upload_coverage.py
Expand Up @@ -35,9 +35,9 @@ def run_with_python(args, **kwargs):
msg("Running:", *cmd)
res = run(cmd, check=True, stdout=PIPE, stderr=PIPE, **kwargs)
msg("STDOUT:")
msg(res.stdout)
sys.stdout.buffer.write(res.stdout)
msg("STDERR:")
msg(res.stdout)
sys.stderr.buffer.write(res.stdout)
return res


Expand Down

0 comments on commit 1454220

Please sign in to comment.