From: Mike Bayer Date: Fri, 31 Aug 2012 15:04:59 +0000 (-0400) Subject: skip this silly test entirely for PG X-Git-Tag: rel_0_8_0b1~186 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=19d04346260e794c7364d7f7ce2415602e6f101c;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git skip this silly test entirely for PG --- diff --git a/test/sql/test_types.py b/test/sql/test_types.py index 74047c7cab..223cba064b 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -813,9 +813,9 @@ class UnicodeTest(fixtures.TestBase, AssertsExecutionResults): eq_(uni(unicodedata), unicodedata.encode('utf-8')) # Py3K - #@testing.fails_if( - # lambda: testing.db_spec("postgresql+pg8000")(testing.db), - # "pg8000 appropriately does not accept 'bytes' for a VARCHAR column." + #@testing.skip_if( + # lambda: testing.db_spec("postgresql")(testing.db), + # "pg8000 and psycopg2 both have issues here in py3k" # ) def test_ignoring_unicode_error(self): """checks String(unicode_error='ignore') is passed to underlying codec."""