summaryrefslogtreecommitdiff
path: root/test/testlib/testing.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-08-17 17:59:08 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-08-17 17:59:08 +0000
commit95748cfc024a9fa875c0ec9323ec5266bb4725c5 (patch)
tree6473ca891975813e5abea96912a2fdc20a6dce48 /test/testlib/testing.py
parent3469724a42acff29c8e064b3cfaf8d073790624b (diff)
downloadsqlalchemy-95748cfc024a9fa875c0ec9323ec5266bb4725c5.tar.gz
- added extra argument con_proxy to ConnectionListener interface checkout/checkin methods
- changed testing connection closer to work on _ConnectionFairy instances, resulting in pool checkins, not actual closes - disabled session two phase test for now, needs work - added some two-phase support to TLEngine, not tested - TLTransaction is now a wrapper
Diffstat (limited to 'test/testlib/testing.py')
-rw-r--r--test/testlib/testing.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/testlib/testing.py b/test/testlib/testing.py
index 88bc99792..6830fb63c 100644
--- a/test/testlib/testing.py
+++ b/test/testlib/testing.py
@@ -340,7 +340,10 @@ class ORMTest(AssertMixin):
clear_mappers()
if not self.keep_data:
for t in _otest_metadata.table_iterator(reverse=True):
- t.delete().execute().close()
+ try:
+ t.delete().execute().close()
+ except Exception, e:
+ print "EXCEPTION DELETING...", e
class TTestSuite(unittest.TestSuite):