Skip to content

Commit

Permalink
add pymongo to iptest exclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Apr 8, 2011
1 parent b9f5480 commit 8c88c90
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions IPython/testing/iptest.py
Expand Up @@ -105,6 +105,7 @@ def test_for(mod, min_version=None):
have['wx.aui'] = test_for('wx.aui')
have['pexpect'] = test_for('pexpect')
have['zmq'] = test_for('zmq', '2.0.10')
have['pymongo'] = test_for('pymongo')

#-----------------------------------------------------------------------------
# Functions and classes
Expand Down Expand Up @@ -186,6 +187,9 @@ def make_exclude():
if not have['zmq']:
exclusions.append(ipjoin('zmq'))
exclusions.append(ipjoin('parallel'))

if not have['pymongo']:
exclusions.append(ipjoin('parallel', 'controller', 'mongodb'))

# This is needed for the reg-exp to match on win32 in the ipdoctest plugin.
if sys.platform == 'win32':
Expand Down

0 comments on commit 8c88c90

Please sign in to comment.