Show More
@@ -0,0 +1,15 b'' | |||
|
1 | """Test suite for the deepreload module.""" | |
|
2 | ||
|
3 | from IPython.testing import decorators as dec | |
|
4 | from IPython.lib.deepreload import reload as dreload | |
|
5 | ||
|
6 | @dec.skipif_not_numpy | |
|
7 | def test_deepreload_numpy(): | |
|
8 | import numpy | |
|
9 | exclude = [ | |
|
10 | # Standard exclusions: | |
|
11 | 'sys', 'os.path', '__builtin__', '__main__', | |
|
12 | # Test-related exclusions: | |
|
13 | 'unittest', | |
|
14 | ] | |
|
15 | dreload(numpy, exclude=exclude) |
General Comments 0
You need to be logged in to leave comments.
Login now