Show More
@@ -105,6 +105,7 b" have['wx'] = test_for('wx')" | |||||
105 | have['wx.aui'] = test_for('wx.aui') |
|
105 | have['wx.aui'] = test_for('wx.aui') | |
106 | have['pexpect'] = test_for('pexpect') |
|
106 | have['pexpect'] = test_for('pexpect') | |
107 | have['zmq'] = test_for('zmq', '2.0.10') |
|
107 | have['zmq'] = test_for('zmq', '2.0.10') | |
|
108 | have['pymongo'] = test_for('pymongo') | |||
108 |
|
109 | |||
109 | #----------------------------------------------------------------------------- |
|
110 | #----------------------------------------------------------------------------- | |
110 | # Functions and classes |
|
111 | # Functions and classes | |
@@ -186,6 +187,9 b' def make_exclude():' | |||||
186 | if not have['zmq']: |
|
187 | if not have['zmq']: | |
187 | exclusions.append(ipjoin('zmq')) |
|
188 | exclusions.append(ipjoin('zmq')) | |
188 | exclusions.append(ipjoin('parallel')) |
|
189 | exclusions.append(ipjoin('parallel')) | |
|
190 | ||||
|
191 | if not have['pymongo']: | |||
|
192 | exclusions.append(ipjoin('parallel', 'controller', 'mongodb')) | |||
189 |
|
193 | |||
190 | # This is needed for the reg-exp to match on win32 in the ipdoctest plugin. |
|
194 | # This is needed for the reg-exp to match on win32 in the ipdoctest plugin. | |
191 | if sys.platform == 'win32': |
|
195 | if sys.platform == 'win32': |
General Comments 0
You need to be logged in to leave comments.
Login now