]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
skip this silly test entirely for PG
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 31 Aug 2012 15:04:59 +0000 (11:04 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 31 Aug 2012 15:04:59 +0000 (11:04 -0400)
test/sql/test_types.py

index 74047c7cabf040fd42d2d034a1a54ac8d1c9fe0b..223cba064bd80edb2eac6765939941cac0cc6102 100644 (file)
@@ -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."""