]> granicus.if.org Git - python/commitdiff
Disable test on Unix. Causes buildbots to fail. See Issue #15091
authorJason R. Coombs <jaraco@jaraco.com>
Sun, 17 Jun 2012 09:06:16 +0000 (05:06 -0400)
committerJason R. Coombs <jaraco@jaraco.com>
Sun, 17 Jun 2012 09:06:16 +0000 (05:06 -0400)
Lib/test/test_import.py

index 140bd963d096163860dd20d2ce6870c3d07893ed..01441ad70ecfc66c6ed5f851fc1d000559a3fe57 100644 (file)
@@ -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[:] = ['.']