浏览代码

skip test_create_read_special_symlink for now

it tends to hang, not only on cygwin.
Thomas Waldmann 1 月之前
父节点
当前提交
2ef669945f
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      src/borg/testsuite/archiver/create_cmd_test.py

+ 3 - 2
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