mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
Disable test on Unix. Causes buildbots to fail. See Issue #15091
This commit is contained in:
parent
1730139a51
commit
658dc3f746
1 changed files with 4 additions and 0 deletions
|
|
@ -726,6 +726,10 @@ class TestSymbolicallyLinkedPackage(unittest.TestCase):
|
|||
or sys.getwindowsversion() >= (6, 0),
|
||||
"Windows Vista or later required")
|
||||
@test.support.skip_unless_symlink
|
||||
@unittest.skipUnless(
|
||||
sys.platform == 'win32',
|
||||
"Test failing on Unix (see issue15091)"
|
||||
)
|
||||
def test_symlinked_dir_importable(self):
|
||||
# make sure sample can only be imported from the current directory.
|
||||
sys.path[:] = ['.']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue