From: Mike Bayer Date: Mon, 14 Feb 2011 22:17:29 +0000 (-0500) Subject: add a close to this as PG appears to be hanging X-Git-Tag: rel_0_7b2~1^2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26605268bc2333fb1436254adf5620ce3e0fc239;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git add a close to this as PG appears to be hanging --- diff --git a/test/ext/test_declarative.py b/test/ext/test_declarative.py index 32eae69a9e..8c97fbf27b 100644 --- a/test/ext/test_declarative.py +++ b/test/ext/test_declarative.py @@ -23,6 +23,7 @@ class DeclarativeTestBase(testing.TestBase, testing.AssertsExecutionResults): Base = decl.declarative_base(testing.db) def teardown(self): + Session.close_all() clear_mappers() Base.metadata.drop_all()