We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd3d5fd commit e9ad400Copy full SHA for e9ad400
tests/test_pipe.py
@@ -14,7 +14,8 @@ def test_deadlock():
14
"""Regression test for https://github.com/Textualize/textual/issues/4643"""
15
app_path = (Path(__file__) / "../deadlock.py").resolve().absolute()
16
result = subprocess.run(
17
- f'echo q | python "{app_path}"', shell=True, capture_output=True
+ f'echo q | "{sys.executable}" "{app_path}"', shell=True, capture_output=True
18
)
19
print(result.stdout)
20
+ print(result.stderr)
21
assert result.returncode == 0
0 commit comments