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