]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- hypothesize that newer pysqlites are also growing a warning log on non-unicdoe...
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 15 Jun 2010 00:15:27 +0000 (20:15 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 15 Jun 2010 00:15:27 +0000 (20:15 -0400)
test/aaa_profiling/test_memusage.py

index 491a57fb019bba092ff059284b14a1b58a8ef715..b639e6e4278cff4a1b20ce1fc47ce8537a7a961f 100644 (file)
@@ -253,6 +253,11 @@ class MemUsageTest(EnsureZeroed):
         finally:
             metadata.drop_all()
     
+    @testing.fails_if(lambda:
+                        testing.db.dialect.name == 'sqlite' and 
+                        testing.db.dialect.dbapi.version >= (2,5),
+                        "Newer pysqlites generate warnings here too and have similar issues."
+                    )
     def test_unicode_warnings(self):
         metadata = MetaData(testing.db)
         table1 = Table("mytable", metadata,