Code

Disabled the bsddb3 module entirely in the unit testing. See CHANGES for
[roundup.git] / test / test_init.py
index 7603ed982936dd0eff24a0ef39f0dcb92e3236de..c63e80773cee42fcc548e28efbf1b1f1d758bf86 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: test_init.py,v 1.4 2001-08-07 00:24:43 richard Exp $
+# $Id: test_init.py,v 1.5 2001-08-29 06:23:59 richard Exp $
 
 import unittest, os, shutil, errno, imp, sys
 
@@ -121,21 +121,24 @@ def suite():
     except:
         print 'bsddb module not found, skipping bsddb DBTestCase'
 
-    try:
-        import bsddb3
-        x = ClassicTestCase
-        x.backend = 'bsddb3'
-        l.append(unittest.makeSuite(x, 'test'))
-        x = ExtendedTestCase
-        x.backend = 'bsddb3'
-        l.append(unittest.makeSuite(x, 'test'))
-    except:
-        print 'bsddb3 module not found, skipping bsddb3 DBTestCase'
+#    try:
+#        import bsddb3
+#        x = ClassicTestCase
+#        x.backend = 'bsddb3'
+#        l.append(unittest.makeSuite(x, 'test'))
+#        x = ExtendedTestCase
+#        x.backend = 'bsddb3'
+#        l.append(unittest.makeSuite(x, 'test'))
+#    except:
+#        print 'bsddb3 module not found, skipping bsddb3 DBTestCase'
 
     return unittest.TestSuite(l)
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.4  2001/08/07 00:24:43  richard
+# stupid typo
+#
 # Revision 1.3  2001/08/07 00:15:51  richard
 # Added the copyright/license notice to (nearly) all files at request of
 # Bizar Software.