diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2012-06-17 09:06:16 (GMT) |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2012-06-17 09:06:16 (GMT) |
commit | 658dc3f746e1ffe5f5dcdd1ffc5c1d0ad458eb96 (patch) | |
tree | 53687fe93e3a39a6ce32bfbe19176af577ca6388 /Lib/test/test_import.py | |
parent | 1730139a51f81c434aacbfbbe347cdbbde04702b (diff) | |
download | cpython-658dc3f746e1ffe5f5dcdd1ffc5c1d0ad458eb96.zip cpython-658dc3f746e1ffe5f5dcdd1ffc5c1d0ad458eb96.tar.gz cpython-658dc3f746e1ffe5f5dcdd1ffc5c1d0ad458eb96.tar.bz2 |
Disable test on Unix. Causes buildbots to fail. See Issue #15091
Diffstat (limited to 'Lib/test/test_import.py')
-rw-r--r-- | Lib/test/test_import.py | 4 |
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[:] = ['.'] |