From: Michael Trier Date: Fri, 15 Apr 2011 19:24:20 +0000 (-0400) Subject: Exclude test on MySQL 5.1.49 - 5.1.52. X-Git-Tag: rel_0_7b4~9^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04b56603cd85c4339a33d010dfea21cf39237495;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Exclude test on MySQL 5.1.49 - 5.1.52. See https://bugs.launchpad.net/ubuntu/+source/mysql-5.1/+bug/706988 --- diff --git a/test/orm/test_dynamic.py b/test/orm/test_dynamic.py index 9b57d3fd67..037a2db641 100644 --- a/test/orm/test_dynamic.py +++ b/test/orm/test_dynamic.py @@ -191,6 +191,7 @@ class DynamicTest(_fixtures.FixtureTest, AssertsCompiledSQL): assert o1 in i1.orders.all() assert i1 in o1.items.all() + @testing.exclude('mysql', 'in', ((5, 1,49), (5, 1, 50), (5, 1, 51), (5, 1, 52)), 'https://bugs.launchpad.net/ubuntu/+source/mysql-5.1/+bug/706988') def test_association_nonaliased(self): items, Order, orders, order_items, Item = (self.tables.items, self.classes.Order,