Show More
@@ -107,6 +107,7 b" have['pymongo'] = test_for('pymongo')" | |||
|
107 | 107 | have['wx'] = test_for('wx') |
|
108 | 108 | have['wx.aui'] = test_for('wx.aui') |
|
109 | 109 | have['zmq'] = test_for('zmq', '2.1.4') |
|
110 | have['qt'] = test_for('IPython.external.qt') | |
|
110 | 111 | |
|
111 | 112 | #----------------------------------------------------------------------------- |
|
112 | 113 | # Functions and classes |
@@ -183,11 +184,15 b' def make_exclude():' | |||
|
183 | 184 | |
|
184 | 185 | if not have['pexpect']: |
|
185 | 186 | exclusions.extend([ipjoin('scripts', 'irunner'), |
|
186 |
ipjoin('lib', 'irunner') |
|
|
187 | ipjoin('lib', 'irunner'), | |
|
188 | ipjoin('lib', 'tests', 'test_irunner')]) | |
|
187 | 189 | |
|
188 | 190 | if not have['zmq']: |
|
189 | 191 | exclusions.append(ipjoin('zmq')) |
|
192 | exclusions.append(ipjoin('frontend', 'qt')) | |
|
190 | 193 | exclusions.append(ipjoin('parallel')) |
|
194 | elif not have['qt']: | |
|
195 | exclusions.append(ipjoin('frontend', 'qt')) | |
|
191 | 196 | |
|
192 | 197 | if not have['pymongo']: |
|
193 | 198 | exclusions.append(ipjoin('parallel', 'controller', 'mongodb')) |
General Comments 0
You need to be logged in to leave comments.
Login now