]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- more skippage of 2.4
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 23 Dec 2010 20:51:41 +0000 (15:51 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 23 Dec 2010 20:51:41 +0000 (15:51 -0500)
test/aaa_profiling/test_compiler.py
test/aaa_profiling/test_zoomark.py
test/aaa_profiling/test_zoomark_orm.py

index 37fc4fb2041a724c3d4f003a7489d9f76832245f..5afcf69bc24df61313062c12df63cfbe0b16fd56 100644 (file)
@@ -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)
index 4c579f238f1d22c9becff6e8440c68b5f7b42977..8c1cb1c600ff7b26b430e466f42262266f47d79e 100644 (file)
@@ -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()
 
index 731d2d4c7e9143d9053f8cbeb0a40286e9a38bf3..0ea1bbd25b4ebf4a991b8c10a78c244e207c9681 100644 (file)
@@ -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