diff --git a/runtests.py b/runtests.py index ff73018b96f8f1d2ad5d29d99407437b1316688d..8d9664524e6f9222a8889db908e8b78fa7eb4d7b 100644 --- a/runtests.py +++ b/runtests.py @@ -56,14 +56,13 @@ EXT_DEP_INCLUDES = [ VER_DEP_MODULES = { # tests are excluded if 'CurrentPythonVersion OP VersionTuple', i.e. - # (2,4) : (operator.le, ...) excludes ... when PyVer <= 2.4.x + # (2,4) : (operator.lt, ...) excludes ... when PyVer < 2.4.x + (2,4) : (operator.lt, lambda x: x in ['run.extern_builtins_T258', + 'run.builtin_sorted' + ]), (2,5) : (operator.lt, lambda x: x in ['run.any', 'run.all', ]), - (2,4) : (operator.le, lambda x: x in ['run.extern_builtins_T258' - ]), - (2,4) : (operator.lt, lambda x: x in ['run.builtin_sorted' - ]), (2,6) : (operator.lt, lambda x: x in ['run.print_function', 'run.cython3', ]),