From fa2f1c5d820bc96fa6b8c2728b7a89e9c59e9638 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 23 Dec 2010 15:51:41 -0500 Subject: [PATCH] - more skippage of 2.4 --- test/aaa_profiling/test_compiler.py | 2 +- test/aaa_profiling/test_zoomark.py | 3 ++- test/aaa_profiling/test_zoomark_orm.py | 3 +-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/aaa_profiling/test_compiler.py b/test/aaa_profiling/test_compiler.py index 37fc4fb204..5afcf69bc2 100644 --- a/test/aaa_profiling/test_compiler.py +++ b/test/aaa_profiling/test_compiler.py @@ -45,7 +45,7 @@ class CompileTest(TestBase, AssertsExecutionResults): def test_update_whereclause(self): t1.update().where(t1.c.c2==12).compile(dialect=self.dialect) - @profiling.function_call_count(versions={'2.4':105, '2.7':148, '2.6':148, + @profiling.function_call_count(versions={'2.7':148, '2.6':148, '3.0':208, '3.1':208}) def test_select(self): s = select([t1], t1.c.c2==t2.c.c1) diff --git a/test/aaa_profiling/test_zoomark.py b/test/aaa_profiling/test_zoomark.py index 4c579f238f..8c1cb1c600 100644 --- a/test/aaa_profiling/test_zoomark.py +++ b/test/aaa_profiling/test_zoomark.py @@ -27,6 +27,7 @@ class ZooMarkTest(TestBase): """ __only_on__ = 'postgresql+psycopg2' + __skip_if__ = lambda : sys.version_info < (2, 5), def test_baseline_0_setup(self): global metadata @@ -369,7 +370,7 @@ class ZooMarkTest(TestBase): def test_profile_2_insert(self): self.test_baseline_2_insert() - @profiling.function_call_count(3340, {'2.4': 2158, '2.7':3564, '2.6':3564}) + @profiling.function_call_count(3340, {'2.4': 2158, '2.7':3340, '2.6':3564}) def test_profile_3_properties(self): self.test_baseline_3_properties() diff --git a/test/aaa_profiling/test_zoomark_orm.py b/test/aaa_profiling/test_zoomark_orm.py index 731d2d4c7e..0ea1bbd25b 100644 --- a/test/aaa_profiling/test_zoomark_orm.py +++ b/test/aaa_profiling/test_zoomark_orm.py @@ -28,8 +28,7 @@ class ZooMarkTest(TestBase): """ __only_on__ = 'postgresql+psycopg2' - __skip_if__ = lambda : sys.version_info < (2, 5), # TODO: get 2.4 - # support + __skip_if__ = lambda : sys.version_info < (2, 5), def test_baseline_0_setup(self): global metadata, session -- 2.47.2