diff options
author | Michael Trier <mtrier@gmail.com> | 2009-01-02 20:33:11 +0000 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2009-01-02 20:33:11 +0000 |
commit | 54598789eed190b9f7efe39202fd71eb33836b28 (patch) | |
tree | ee47e53b62768c8fca2219427b9fbf547e44a9b2 | |
parent | e878a96e6e32186e7956693a1e720cf2c094604a (diff) | |
download | sqlalchemy-54598789eed190b9f7efe39202fd71eb33836b28.tar.gz |
Marked a couple of unicode schema tests as failing on mssql.
-rw-r--r-- | test/orm/unitofwork.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/orm/unitofwork.py b/test/orm/unitofwork.py index 504ab7d82..cd27bdc9e 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): |