Skip to content

Commit

Permalink
try shell=True
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood committed May 22, 2024
1 parent 211e953 commit 652df9c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/test_typing_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5046,7 +5046,11 @@ def run():
# and makes other tests fail:
try:
proc = subprocess.run(
[sys.executable, "-c", code], check=True, capture_output=True, text=True,
[sys.executable, "-c", code],
check=True,
capture_output=True,
text=True,
shell=True,
)
except subprocess.CalledProcessError as exc:
print("stdout", exc.stdout, sep="\n")
Expand Down

0 comments on commit 652df9c

Please sign in to comment.