diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-06-14 20:15:27 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-06-14 20:15:27 -0400 |
| commit | 1769b2d8deb8aa97c6f8df500c1355f4206d1484 (patch) | |
| tree | d0c2e3cda7d00530857e906e6e898e0a75607cd2 /test/aaa_profiling/test_memusage.py | |
| parent | e0aa61018545700119d294197ac4581430cb2335 (diff) | |
| download | sqlalchemy-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.py | 5 |
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, |
