From 658dc3f746e1ffe5f5dcdd1ffc5c1d0ad458eb96 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 17 Jun 2012 05:06:16 -0400 Subject: Disable test on Unix. Causes buildbots to fail. See Issue #15091 --- Lib/test/test_import.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index 140bd96..01441ad 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[:] = ['.'] -- cgit v0.12