[Zodb-checkins] CVS: ZODB3/ZODB/tests - testConfig.py:1.10.20.3

Tim Peters tim.one at comcast.net
Mon Jun 14 17:59:00 EDT 2004


Update of /cvs-repository/ZODB3/ZODB/tests
In directory cvs.zope.org:/tmp/cvs-serv23665/ZODB/tests

Modified Files:
      Tag: Zope-2_7-branch
	testConfig.py 
Log Message:
As promised in the 3.2.2b1 announcement, minimally disruptive changes
to disable the Berkeley tests for 3.2.2 final.


=== ZODB3/ZODB/tests/testConfig.py 1.10.20.2 => 1.10.20.3 ===
--- ZODB3/ZODB/tests/testConfig.py:1.10.20.2	Mon Sep 15 17:24:20 2003
+++ ZODB3/ZODB/tests/testConfig.py	Mon Jun 14 17:58:59 2004
@@ -148,7 +148,7 @@
     suite.addTest(unittest.makeSuite(ZODBConfigTest))
     # Only run the Berkeley tests if they are available
     import BDBStorage
-    if BDBStorage.is_available:
+    if False and BDBStorage.is_available:
         suite.addTest(unittest.makeSuite(BDBConfigTest))
     return suite
 




More information about the Zodb-checkins mailing list