From daa9df5b632e67219f0fc5ddc15a0953e4f028dd Mon Sep 17 00:00:00 2001 From: MinRK Date: Wed, 4 May 2011 17:06:30 -0700 Subject: [PATCH] various db backend fixes * use index on msg_id in mongodb backend (_table prevented some methods from working outside the session) * purge_request improved to use fewer db calls * mongodb testcase split into its own file * Fix equality testing, NULL handling, in SQLiteDB backend --- IPython/testing/iptest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 506e65011..be593dd9f 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -199,6 +199,7 @@ def make_exclude(): if not have['pymongo']: exclusions.append(ipjoin('parallel', 'controller', 'mongodb')) + exclusions.append(ipjoin('parallel', 'tests', 'test_mongodb')) if not have['matplotlib']: exclusions.extend([ipjoin('lib', 'pylabtools'),