Commit 8a2150aa authored by Ned Deily's avatar Ned Deily

Issue #28095: Temporarily disable part of test_startup_imports on OS X.

parent 59da4b32
......@@ -470,7 +470,9 @@ class StartupImportTests(unittest.TestCase):
'heapq', 'itertools', 'keyword', 'operator',
'reprlib', 'types', 'weakref'
}.difference(sys.builtin_module_names)
self.assertFalse(modules.intersection(collection_mods), stderr)
# http://bugs.python.org/issue28095
if sys.platform != 'darwin':
self.assertFalse(modules.intersection(collection_mods), stderr)
if __name__ == "__main__":
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment