summaryrefslogtreecommitdiff
path: root/test/aaa_profiling/test_memusage.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-06-14 20:15:27 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-06-14 20:15:27 -0400
commit1769b2d8deb8aa97c6f8df500c1355f4206d1484 (patch)
treed0c2e3cda7d00530857e906e6e898e0a75607cd2 /test/aaa_profiling/test_memusage.py
parente0aa61018545700119d294197ac4581430cb2335 (diff)
downloadsqlalchemy-1769b2d8deb8aa97c6f8df500c1355f4206d1484.tar.gz
- hypothesize that newer pysqlites are also growing a warning log on non-unicdoe strings
Diffstat (limited to 'test/aaa_profiling/test_memusage.py')
-rw-r--r--test/aaa_profiling/test_memusage.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/aaa_profiling/test_memusage.py b/test/aaa_profiling/test_memusage.py
index 491a57fb0..b639e6e42 100644
--- a/test/aaa_profiling/test_memusage.py
+++ b/test/aaa_profiling/test_memusage.py
@@ -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,