##// END OF EJS Templates
add pymongo to iptest exclusions
MinRK -
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
@@ -187,6 +188,9 b' def make_exclude():'
187 exclusions.append(ipjoin('zmq'))
188 exclusions.append(ipjoin('zmq'))
188 exclusions.append(ipjoin('parallel'))
189 exclusions.append(ipjoin('parallel'))
189
190
191 if not have['pymongo']:
192 exclusions.append(ipjoin('parallel', 'controller', 'mongodb'))
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':
192 exclusions = [s.replace('\\','\\\\') for s in exclusions]
196 exclusions = [s.replace('\\','\\\\') for s in exclusions]
General Comments 0
You need to be logged in to leave comments. Login now