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