From: Mike Bayer Date: Tue, 6 Jul 2010 21:09:42 +0000 (-0400) Subject: up the variance on these as the call counts are very low and X-Git-Tag: rel_0_6_2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43dbfccf4d76c9f94dc409b994921c477b0d4776;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git up the variance on these as the call counts are very low and things wiggle around even between 2.6.4/2.6.5 --- diff --git a/test/aaa_profiling/test_pool.py b/test/aaa_profiling/test_pool.py index c4f5191fec..bc3c12d57f 100644 --- a/test/aaa_profiling/test_pool.py +++ b/test/aaa_profiling/test_pool.py @@ -20,7 +20,8 @@ class QueuePoolTest(TestBase, AssertsExecutionResults): @profiling.function_call_count(64, {'2.4': 42, '2.7':59, '2.7+cextension':59, - '3.0':65, '3.1':65}) + '3.0':65, '3.1':65}, + variance=.10) def test_first_connect(self): conn = pool.connect() @@ -29,7 +30,8 @@ class QueuePoolTest(TestBase, AssertsExecutionResults): conn.close() @profiling.function_call_count(32, {'2.4': 21, '2.7':29, - '2.7+cextension':29}) + '2.7+cextension':29}, + variance=.10) def go(): conn2 = pool.connect() return conn2