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 8a0334d commit 41c6fb8Copy full SHA for 41c6fb8
test/t/conftest.py
@@ -206,7 +206,9 @@ def bash(request) -> pexpect.spawn:
206
if "cwd" in marker.kwargs and marker.kwargs.get("cwd") is not None:
207
cwd = marker.kwargs.get("cwd")
208
elif "temp_cwd" in marker.kwargs and marker.kwargs.get("temp_cwd"):
209
- tmpdir = tempfile.TemporaryDirectory()
+ tmpdir = tempfile.TemporaryDirectory(
210
+ prefix="bash-completion-test_"
211
+ )
212
cwd = tmpdir.name
213
if cwd is None:
214
cwd = os.path.join(testdir, "fixtures")
0 commit comments