Tests: fixed exception handling.

This commit is contained in:
Andrei Zeliankou 2023-07-10 01:57:12 +01:00
parent de885feb06
commit 3c7743344b

View file

@ -446,7 +446,9 @@ def _clear_temp_dir():
shutil.rmtree(path)
break
except OSError as err:
if err.errno != 16:
# OSError: [Errno 16] Device or resource busy
# OSError: [Errno 39] Directory not empty
if err.errno not in [16, 39]:
raise
time.sleep(1)