1 parent f12e84f commit 3b0be9bCopy full SHA for 3b0be9b
1 file changed
test/test_scripts.py
@@ -28,7 +28,12 @@ def test_do_commands_exist(self):
28
"""
29
for command in self._commands():
30
try:
31
- subprocess.check_output(command.split(), stderr=subprocess.STDOUT)
+ subprocess.check_output(
32
+ command.split(),
33
+ stderr=subprocess.STDOUT,
34
+ encoding='utf-8',
35
+ shell=IS_WINDOWS,
36
+ )
37
except subprocess.CalledProcessError as e:
38
return_code = e.returncode
39
output = e.output
0 commit comments