]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Exclude test on MySQL 5.1.49 - 5.1.52.
authorMichael Trier <mtrier@gmail.com>
Fri, 15 Apr 2011 19:24:20 +0000 (15:24 -0400)
committerMichael Trier <mtrier@gmail.com>
Fri, 15 Apr 2011 19:24:20 +0000 (15:24 -0400)
See https://bugs.launchpad.net/ubuntu/+source/mysql-5.1/+bug/706988

test/orm/test_dynamic.py

index 9b57d3fd671383675dcbc127b9d84763688e2643..037a2db6414a7e901abd807b6e8f900456c66e29 100644 (file)
@@ -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,