diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-06-13 20:15:17 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-06-13 20:15:17 -0400 |
| commit | 2497d559ddeb68e52eb1838deeed7e3305280aa5 (patch) | |
| tree | b59536be2df082b9f16988aaaa3126c981148358 /test/aaa_profiling | |
| parent | 09485d733131b667813f44eb0b6807b698668ee7 (diff) | |
| download | sqlalchemy-2497d559ddeb68e52eb1838deeed7e3305280aa5.tar.gz | |
- add changelog for #3451, with 09485d733131b667813f44eb0b6807b698668ee7 fixes #3451
- also add a bulk_insert_mappings test
Diffstat (limited to 'test/aaa_profiling')
| -rw-r--r-- | test/aaa_profiling/test_memusage.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/aaa_profiling/test_memusage.py b/test/aaa_profiling/test_memusage.py index 63883daac..a777a8aa1 100644 --- a/test/aaa_profiling/test_memusage.py +++ b/test/aaa_profiling/test_memusage.py @@ -45,7 +45,8 @@ def profile_memory(maxtimes=50): # tests under 50 iterations and ideally about ten, so # just filter them out so that we get a "flatline" more quickly. - if testing.against("sqlite+pysqlite"): + if testing.against("sqlite+pysqlite") or \ + testing.against("sqlite+pysqlcipher"): return [o for o in gc.get_objects() if not isinstance(o, weakref.ref)] else: |
