From 3e67b32100cc5f8fd273d626b6a9acddb8ccb8fd Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 25 Oct 2013 18:04:22 -0400 Subject: [PATCH] python2 pickle here fails --- test/orm/test_pickled.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/orm/test_pickled.py b/test/orm/test_pickled.py index 753eee2440..35f1b19d15 100644 --- a/test/orm/test_pickled.py +++ b/test/orm/test_pickled.py @@ -20,6 +20,7 @@ from sqlalchemy.testing.pickleable import User, Address, Dingaling, Order, \ class PickleTest(fixtures.MappedTest): + @classmethod def define_tables(cls, metadata): Table('users', metadata, @@ -170,6 +171,7 @@ class PickleTest(fixtures.MappedTest): sess.add(u2) assert u2.addresses + @testing.requires.non_broken_pickle def test_instance_deferred_cols(self): users, addresses = (self.tables.users, self.tables.addresses) @@ -240,6 +242,7 @@ class PickleTest(fixtures.MappedTest): eq_(u1, u2) + @testing.requires.non_broken_pickle def test_options_with_descriptors(self): users, addresses, dingalings = (self.tables.users, self.tables.addresses, -- 2.47.3