From dc7974deae7aad45b544a90cff23dd91d2b3cc65 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 8 Mar 2009 19:29:56 +0000 Subject: [PATCH] attempt to exlude sqlite 3.5.9 and below, for buildbot failure. not clear which version of sqlite fixes this particular issue --- test/ext/serializer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/ext/serializer.py b/test/ext/serializer.py index 77fc4870ea..8e941ae795 100644 --- a/test/ext/serializer.py +++ b/test/ext/serializer.py @@ -115,6 +115,7 @@ class SerializeTest(testing.ORMTest): eq_(list(q2.values(User.id, User.name)), [(9, u'fred')]) + @testing.exclude('sqlite', '<=', '3.5.9', 'id comparison failing on the buildbot') def test_aliases(self): u7, u8, u9, u10 = Session.query(User).order_by(User.id).all() -- 2.47.3