summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_import.py4
1 files changed, 4 insertions, 0 deletions
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[:] = ['.']