Skip to content

Commit f11dda1

Browse files
committed
Revert "REMOVE BEFORE MERGE: ignore errors for rmtree"
This reverts commit 98c0536.
1 parent 27f8d96 commit f11dda1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/t/conftest.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -958,9 +958,7 @@ def prepare_fixture_dir(
958958
the tarball. This is to work better with case insensitive file systems.
959959
"""
960960
tempdir = Path(tempfile.mkdtemp(prefix="bash-completion-fixture-dir"))
961-
request.addfinalizer(
962-
lambda: shutil.rmtree(str(tempdir), ignore_errors=True)
963-
)
961+
request.addfinalizer(lambda: shutil.rmtree(str(tempdir)))
964962

965963
old_cwd = os.getcwd()
966964
try:

0 commit comments

Comments
 (0)