##// END OF EJS Templates
Fix config part of the test suite.
Fernando Perez -
Show More
@@ -80,20 +80,20 b' def make_exclude():'
80 # cause testing problems. We should strive to minimize the number of
80 # cause testing problems. We should strive to minimize the number of
81 # skipped modules, since this means untested code. As the testing
81 # skipped modules, since this means untested code. As the testing
82 # machinery solidifies, this list should eventually become empty.
82 # machinery solidifies, this list should eventually become empty.
83
83 # These modules and packages will NOT get scanned by nose at all for tests
84 # Note that these exclusions only mean that the docstrings are not analyzed
85 # for examples to be run as tests, if there are other test functions in
86 # those modules, they do get run.
87 exclusions = [pjoin('IPython', 'external'),
84 exclusions = [pjoin('IPython', 'external'),
88 pjoin('IPython', 'frontend', 'process', 'winprocess.py'),
85 pjoin('IPython', 'frontend', 'process', 'winprocess.py'),
89 pjoin('IPython_doctest_plugin'),
86 pjoin('IPython_doctest_plugin'),
90 pjoin('IPython', 'quarantine'),
87 pjoin('IPython', 'quarantine'),
91 pjoin('IPython', 'deathrow'),
88 pjoin('IPython', 'deathrow'),
92 pjoin('IPython', 'testing', 'attic'),
89 pjoin('IPython', 'testing', 'attic'),
93 pjoin('IPython', 'testing', 'tools'),
90 pjoin('IPython', 'testing', 'tools'),
94 pjoin('IPython', 'testing', 'mkdoctests'),
91 pjoin('IPython', 'testing', 'mkdoctests'),
95 pjoin('IPython', 'lib', 'inputhook')
92 pjoin('IPython', 'lib', 'inputhook'),
96 ]
93 # Config files aren't really importable stand-alone
94 pjoin('IPython', 'config', 'default'),
95 pjoin('IPython', 'config', 'profile'),
96 ]
97
97
98 if not have_wx:
98 if not have_wx:
99 exclusions.append(pjoin('IPython', 'gui'))
99 exclusions.append(pjoin('IPython', 'gui'))
General Comments 0
You need to be logged in to leave comments. Login now