]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
commented out bus erroring section for now pending [ticket:1099] resolution
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 5 Jul 2008 20:35:26 +0000 (20:35 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 5 Jul 2008 20:35:26 +0000 (20:35 +0000)
test/orm/sharding/shard.py

index f25d097fd7624810f1a24645a7283dbccf617d25..bd8b233c45ce319528af80b6d97925b643b01ae8 100644 (file)
@@ -145,9 +145,10 @@ class ShardTest(TestBase):
         assert db2.execute(weather_locations.select()).fetchall() == [(1, 'Asia', 'Tokyo')]
         assert db1.execute(weather_locations.select()).fetchall() == [(2, 'North America', 'New York'), (3, 'North America', 'Toronto')]
 
-        t = sess.query(WeatherLocation).get(tokyo.id)
-        assert t.city == tokyo.city
-        assert t.reports[0].temperature == 80.0
+        # TODO: bus errors on some platforms, ticket #1099
+#        t = sess.query(WeatherLocation).get(tokyo.id)
+#        assert t.city == tokyo.city
+#        assert t.reports[0].temperature == 80.0
 
         north_american_cities = sess.query(WeatherLocation).filter(WeatherLocation.continent == 'North America')
         assert set([c.city for c in north_american_cities]) == set(['New York', 'Toronto'])