diff test/db_test_base.py @ 6242:b14359503b49

Try to remove errors from postgres/mysql They are failing trying to close a db handle that is not needed for this test. So open the db like all of the rest of the tests. It's ok that it's not used.
author John Rouillard <rouilj@ieee.org>
date Tue, 28 Jul 2020 07:16:49 -0400
parents 0c3def4b5275
children a635a60ffb84
line wrap: on
line diff
--- a/test/db_test_base.py	Tue Jul 28 06:57:41 2020 -0400
+++ b/test/db_test_base.py	Tue Jul 28 07:16:49 2020 -0400
@@ -2985,6 +2985,8 @@
     def test_splitDesignator(self):
         from roundup.hyperdb import splitDesignator, DesignatorError
 
+        self.open_database() # allow setup/shutdown to work to postgres/mysql
+
         valid_test_cases = [('zip2py44', ('zip2py', '44')),
                               ('zippy2', ('zippy', '2')),
                               ('a9', ('a', '9')),

Roundup Issue Tracker: http://roundup-tracker.org/