Skip to content

Commit 652df9c

Browse files
committed
try shell=True
1 parent 211e953 commit 652df9c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/test_typing_extensions.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5046,7 +5046,11 @@ def run():
50465046
# and makes other tests fail:
50475047
try:
50485048
proc = subprocess.run(
5049-
[sys.executable, "-c", code], check=True, capture_output=True, text=True,
5049+
[sys.executable, "-c", code],
5050+
check=True,
5051+
capture_output=True,
5052+
text=True,
5053+
shell=True,
50505054
)
50515055
except subprocess.CalledProcessError as exc:
50525056
print("stdout", exc.stdout, sep="\n")

0 commit comments

Comments
 (0)