diff options
Diffstat (limited to 'test/conftest.py')
-rw-r--r-- | test/conftest.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/conftest.py b/test/conftest.py index 31709d24..8d2850fd 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -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) |