From 7f9739457c684b915faaba4333e632791e76c96f Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Thu, 14 Nov 2024 17:52:51 -0500 Subject: [PATCH] fix(workaround,test): completely skip running test_DownloadDirectory_basic on windows Somehow that causes "indigestion" to pytest process later in its life cycle --- dandi/tests/test_download.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dandi/tests/test_download.py b/dandi/tests/test_download.py index 5d1d5f45f..a4ad631c5 100644 --- a/dandi/tests/test_download.py +++ b/dandi/tests/test_download.py @@ -1044,6 +1044,7 @@ def test_pyouthelper_time_remaining_1339(): assert done[-1] == f"ETA: {10 - i} seconds<" +@mark.skipif_on_windows # https://github.com/pytest-dev/pytest/issues/12964 def test_DownloadDirectory_basic(tmp_path: Path) -> None: with DownloadDirectory(tmp_path, digests={}) as dl: assert dl.dirpath.exists()