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