From 2ef669945f67257e063a38f3ebb8b3eef405ce25 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Wed, 28 May 2025 22:12:27 +0200 Subject: [PATCH] skip test_create_read_special_symlink for now it tends to hang, not only on cygwin. --- src/borg/testsuite/archiver/create_cmd_test.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/borg/testsuite/archiver/create_cmd_test.py b/src/borg/testsuite/archiver/create_cmd_test.py index 230fa9ce0..d2fe10363 100644 --- a/src/borg/testsuite/archiver/create_cmd_test.py +++ b/src/borg/testsuite/archiver/create_cmd_test.py @@ -14,7 +14,7 @@ from ... import platform from ...constants import * # NOQA from ...constants import zeros from ...manifest import Manifest -from ...platform import is_cygwin, is_win32, is_darwin +from ...platform import is_win32, is_darwin from ...repository import Repository from ...helpers import CommandError, BackupPermissionError from .. import has_lchflags @@ -822,7 +822,8 @@ def test_create_topical(archivers, request): assert "file1" in output -@pytest.mark.skipif(not are_fifos_supported() or is_cygwin, reason="FIFOs not supported, hangs on cygwin") +# @pytest.mark.skipif(not are_fifos_supported() or is_cygwin, reason="FIFOs not supported, hangs on cygwin") +@pytest.mark.skip(reason="This test is problematic and should be skipped") def test_create_read_special_symlink(archivers, request): archiver = request.getfixturevalue(archivers) from threading import Thread