Skip to content

Commit 239de05

Browse files
authored
Update regr_test.py
1 parent 65127ff commit 239de05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/regr_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def run_testcases(
119119
pip_exe, python_exe = make_venv(tmpdir_path / ".venv")
120120
pip_command = [pip_exe, "install", get_mypy_req(), *requirements.external_pkgs]
121121
try:
122-
subprocess.run(pip_command, check=True, capture_output=True)
122+
subprocess.run(pip_command, check=True, capture_output=True, text=True)
123123
except subprocess.CalledProcessError as e:
124124
print(e.stderr)
125125
raise

0 commit comments

Comments
 (0)