summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/aaa_profiling/test_pool.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/aaa_profiling/test_pool.py b/test/aaa_profiling/test_pool.py
index a20c95ba0..0b9b38a51 100644
--- a/test/aaa_profiling/test_pool.py
+++ b/test/aaa_profiling/test_pool.py
@@ -27,9 +27,14 @@ 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':61},
+ '3':55},
variance=.10)
def test_first_connect(self):
conn = pool.connect()