From 1d9ef76249a2a4dd9351f0df14f91f5915e37c8f 2015-07-27 16:31:03 From: Thomas Kluyver Date: 2015-07-27 16:31:03 Subject: [PATCH] Exclude some more import-related modules from deepreload test --- diff --git a/IPython/lib/tests/test_deepreload.py b/IPython/lib/tests/test_deepreload.py index 92195bc..50fc66c 100644 --- a/IPython/lib/tests/test_deepreload.py +++ b/IPython/lib/tests/test_deepreload.py @@ -30,8 +30,9 @@ def test_deepreload_numpy(): # Test-related exclusions: 'unittest', 'UserDict', '_collections_abc', 'tokenize', 'collections', 'collections.abc', - 'importlib', 'importlib._bootstrap', '_frozen_importlib', - '_frozen_importlib_external', + 'importlib', 'importlib.machinery', '_imp', + 'importlib._bootstrap', 'importlib._bootstrap_external', + '_frozen_importlib', '_frozen_importlib_external', ] dreload(numpy, exclude=exclude)