diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-07-17 09:33:52 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-07-17 09:33:52 -0400 |
| commit | 5b2df4215f0631c51d30b3b77082622ef0f5a733 (patch) | |
| tree | db64740d5b76febd7c6c40bc48207a71f35ec2d0 /test/aaa_profiling | |
| parent | eaec7fd2b08ef04ad43a530dcc7a2a53f9f234ee (diff) | |
| download | sqlalchemy-5b2df4215f0631c51d30b3b77082622ef0f5a733.tar.gz | |
relax this variance for now
Diffstat (limited to 'test/aaa_profiling')
| -rw-r--r-- | test/aaa_profiling/test_orm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/aaa_profiling/test_orm.py b/test/aaa_profiling/test_orm.py index 4295f51e4..1f2e6bb89 100644 --- a/test/aaa_profiling/test_orm.py +++ b/test/aaa_profiling/test_orm.py @@ -61,7 +61,7 @@ class MergeTest(fixtures.MappedTest): # down from 185 on this this is a small slice of a usually # bigger operation so using a small variance - @profiling.function_call_count(variance=0.05, + @profiling.function_call_count(variance=0.10, versions={'2.7':96, '2.6':96, '2.5':96, '3': 100}) def go(): return sess2.merge(p1, load=False) @@ -69,7 +69,7 @@ class MergeTest(fixtures.MappedTest): # third call, merge object already present. almost no calls. - @profiling.function_call_count(variance=0.05, + @profiling.function_call_count(variance=0.10, versions={'2.7':16, '2.6':16, '2.5':16, '3': 16}) def go(): return sess2.merge(p2, load=False) |
