From: Jason R. Coombs Date: Sun, 17 Jun 2012 09:06:16 +0000 (-0400) Subject: Disable test on Unix. Causes buildbots to fail. See Issue #15091 X-Git-Tag: v3.3.0b1~207 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=658dc3f746e1ffe5f5dcdd1ffc5c1d0ad458eb96;p=python Disable test on Unix. Causes buildbots to fail. See Issue #15091 --- diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index 140bd963d0..01441ad70e 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -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[:] = ['.']