[Zodb-checkins] CVS: ZODB3/ZEO/tests - testZEO.py:1.35

Jeremy Hylton jeremy@zope.com
Thu, 12 Sep 2002 17:11:32 -0400


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

Modified Files:
	testZEO.py 
Log Message:
shutup mktemp warnings


=== ZODB3/ZEO/tests/testZEO.py 1.34 => 1.35 ===
--- ZODB3/ZEO/tests/testZEO.py:1.34	Thu Sep 12 15:25:18 2002
+++ ZODB3/ZEO/tests/testZEO.py	Thu Sep 12 17:11:31 2002
@@ -433,6 +433,11 @@
     raise RuntimeError, "unsupported os: %s" % os.name
 
 def test_suite():
+
+    # shutup warnings about mktemp
+    import warnings
+    warnings.filterwarnings("ignore", "mktemp")
+    
     suite = unittest.TestSuite()
     for klass in test_classes:
         sub = unittest.makeSuite(klass, 'check')