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