skip test_create_read_special_symlink on cygwin

test is broken on cygwin and hangs infinitely.
This commit is contained in:
Thomas Waldmann 2022-11-22 18:09:44 +01:00
parent 15c51ee3c6
commit ae0017d174
No known key found for this signature in database
GPG Key ID: 243ACFA951F78E01
1 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@ import pytest
from ... import platform
from ...constants import * # NOQA
from ...manifest import Manifest
from ...platform import is_cygwin
from ...repository import Repository
from .. import has_lchflags
from .. import changedir
@ -707,7 +708,7 @@ class ArchiverTestCase(ArchiverTestCaseBase):
output = self.cmd(f"--repo={self.repository_location}", "create", "test3", "input", "--list", "--filter=AM")
self.assert_in("file1", output)
@pytest.mark.skipif(not are_fifos_supported(), reason="FIFOs not supported")
@pytest.mark.skipif(not are_fifos_supported() or is_cygwin, reason="FIFOs not supported, hangs on cygwin")
def test_create_read_special_symlink(self):
from threading import Thread