[Zope-Checkins] CVS: ZODB3/ZEO/tests - testConnection.py:1.16.4.2 testZEO.py:1.72.6.3

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


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

Modified Files:
      Tag: Zope-2_7-branch
	testConnection.py testZEO.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/ZEO/tests/testConnection.py 1.16.4.1 => 1.16.4.2 ===
--- ZODB3/ZEO/tests/testConnection.py:1.16.4.1	Mon Sep 15 14:02:59 2003
+++ ZODB3/ZEO/tests/testConnection.py	Mon Jun 14 17:58:58 2004
@@ -131,7 +131,7 @@
                 MappingStorageTimeoutTests]
 
 import BDBStorage
-if BDBStorage.is_available:
+if False and BDBStorage.is_available:
     test_classes += [BDBConnectionTests,
                      BDBReconnectionTests,
                      BDBInvqTests,


=== ZODB3/ZEO/tests/testZEO.py 1.72.6.2 => 1.72.6.3 ===
--- ZODB3/ZEO/tests/testZEO.py:1.72.6.2	Mon Sep 29 10:50:45 2003
+++ ZODB3/ZEO/tests/testZEO.py	Mon Jun 14 17:58:58 2004
@@ -257,7 +257,7 @@
 test_classes = [FileStorageTests, MappingStorageTests]
 
 import BDBStorage
-if BDBStorage.is_available:
+if False and BDBStorage.is_available:
     test_classes.append(BDBTests)
 
 




More information about the Zope-Checkins mailing list