diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-08-31 11:04:59 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-08-31 11:04:59 -0400 |
commit | 19d04346260e794c7364d7f7ce2415602e6f101c (patch) | |
tree | 60ab6b53265f031b0bda337855759cac1735f965 | |
parent | 98106a3df541bb3974564abb18581a6c606d9a44 (diff) | |
download | sqlalchemy-19d04346260e794c7364d7f7ce2415602e6f101c.tar.gz |
skip this silly test entirely for PG
-rw-r--r-- | test/sql/test_types.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/sql/test_types.py b/test/sql/test_types.py index 74047c7ca..223cba064 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.""" |