summaryrefslogtreecommitdiff
path: root/test/aaa_profiling
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-06-13 20:15:17 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-06-13 20:15:17 -0400
commit2497d559ddeb68e52eb1838deeed7e3305280aa5 (patch)
treeb59536be2df082b9f16988aaaa3126c981148358 /test/aaa_profiling
parent09485d733131b667813f44eb0b6807b698668ee7 (diff)
downloadsqlalchemy-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.py3
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: