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 fca3c00 commit 81d732dCopy full SHA for 81d732d
test/t/conftest.py
@@ -953,7 +953,9 @@ def prepare_fixture_dir(
953
the tarball. This is to work better with case insensitive file systems.
954
"""
955
tempdir = Path(tempfile.mkdtemp(prefix="bash-completion-fixture-dir"))
956
- request.addfinalizer(lambda: shutil.rmtree(str(tempdir)))
+ request.addfinalizer(
957
+ lambda: shutil.rmtree(str(tempdir), ignore_errors=True)
958
+ )
959
960
old_cwd = os.getcwd()
961
try:
0 commit comments