From: Michael Trier Date: Fri, 2 Jan 2009 20:33:11 +0000 (+0000) Subject: Marked a couple of unicode schema tests as failing on mssql. X-Git-Tag: rel_0_5_0~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=54598789eed190b9f7efe39202fd71eb33836b28;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Marked a couple of unicode schema tests as failing on mssql. --- diff --git a/test/orm/unitofwork.py b/test/orm/unitofwork.py index 504ab7d823..cd27bdc9e3 100644 --- a/test/orm/unitofwork.py +++ b/test/orm/unitofwork.py @@ -233,6 +233,7 @@ class UnicodeSchemaTest(engine_base.AltEngineTest, _base.MappedTest): _base.MappedTest.tearDownAll(self) engine_base.AltEngineTest.tearDownAll(self) + @testing.fails_on('mssql', 'pyodbc returns a non unicode encoding of the results description.') @testing.resolve_artifact_names def test_mapping(self): class A(_base.ComparableEntity): @@ -269,6 +270,7 @@ class UnicodeSchemaTest(engine_base.AltEngineTest, _base.MappedTest): assert new_a1.t2s[0].d == b1.d session.clear() + @testing.fails_on('mssql', 'pyodbc returns a non unicode encoding of the results description.') @testing.resolve_artifact_names def test_inheritance_mapping(self): class A(_base.ComparableEntity):