From: Mike Bayer Date: Thu, 21 Jun 2012 06:06:27 +0000 (-0400) Subject: callcount X-Git-Tag: rel_0_7_9~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7228f459dd5e4e577551e3ee094c29343ff422d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git callcount --- diff --git a/test/aaa_profiling/test_pool.py b/test/aaa_profiling/test_pool.py index 1077a78b7c..c54b965dce 100644 --- a/test/aaa_profiling/test_pool.py +++ b/test/aaa_profiling/test_pool.py @@ -27,11 +27,15 @@ class QueuePoolTest(fixtures.TestBase, AssertsExecutionResults): use_threadlocal=True) + # the callcount on this test seems to vary + # based on tests that ran before (particularly py3k), + # probably + # due to the event mechanics being established + # or not already... @profiling.function_call_count(72, {'2.4': 63, '2.7':67, '2.7+cextension':67, - '3.0':73, '3.1':73, - '3.2':55}, - variance=.10) + '3':55}, + variance=.15) def test_first_connect(self): conn = pool.connect()