We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1825d5 commit 5a504e5Copy full SHA for 5a504e5
1 file changed
pytest_cpp/google.py
@@ -61,7 +61,9 @@ def run_test(self, executable, test_id):
61
'--gtest_output=xml:%s' % xml_filename,
62
]
63
try:
64
- subprocess.check_output(args, stderr=subprocess.STDOUT)
+ subprocess.check_output(args,
65
+ stderr=subprocess.STDOUT,
66
+ universal_newlines=True)
67
except subprocess.CalledProcessError as e:
68
if e.returncode != 1:
69
msg = ('Internal Error: calling {executable} '
0 commit comments