From: Mike Bayer Date: Sat, 21 Nov 2015 21:20:25 +0000 (-0500) Subject: - don't create tables on compile-only tests X-Git-Tag: rel_1_1_0b1~84^2~70^2~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=068d37035a5d0004dc93712f4fa88703aefa4076;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - don't create tables on compile-only tests --- diff --git a/test/orm/test_eager_relations.py b/test/orm/test_eager_relations.py index 6d9d9ec4b8..084741b27a 100644 --- a/test/orm/test_eager_relations.py +++ b/test/orm/test_eager_relations.py @@ -2442,6 +2442,7 @@ class SubqueryAliasingTest(fixtures.MappedTest, testing.AssertsCompiledSQL): """test #2188""" __dialect__ = 'default' + run_create_tables = None @classmethod def define_tables(cls, metadata): @@ -4013,6 +4014,7 @@ class CyclicalInheritingEagerTestTwo(fixtures.DeclarativeMappedTest, class CyclicalInheritingEagerTestThree(fixtures.DeclarativeMappedTest, testing.AssertsCompiledSQL): __dialect__ = 'default' + run_create_tables = None @classmethod def setup_classes(cls):