Commit 658dc3f7 authored by Jason R. Coombs's avatar Jason R. Coombs

Disable test on Unix. Causes buildbots to fail. See Issue #15091

parent 1730139a
......@@ -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[:] = ['.']
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment