From: Mike Bayer Date: Sun, 8 Mar 2009 19:29:56 +0000 (+0000) Subject: attempt to exlude sqlite 3.5.9 and below, for buildbot failure. not clear which... X-Git-Tag: rel_0_5_3~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dc7974deae7aad45b544a90cff23dd91d2b3cc65;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git attempt to exlude sqlite 3.5.9 and below, for buildbot failure. not clear which version of sqlite fixes this particular issue --- 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()