From ce3051e953e6ba1938712f15246feb74bdec84dd Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Tue, 20 Nov 2012 19:57:04 +0100 Subject: exclude new xmlfile() tests in Py2.4 as they require the 'with' statement --- test.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test.py') diff --git a/test.py b/test.py index 2a889aea..008da074 100644 --- a/test.py +++ b/test.py @@ -561,6 +561,12 @@ def main(argv): # Finding and importing test_files = get_test_files(cfg) + + if sys.version_info[:2] < (2,5): + # exclude tests that require the 'with' statement + test_files = [ test_file for test_file in test_files + if 'test_incremental_xmlfile.py' not in test_file ] + if cfg.list_tests or cfg.run_tests: test_cases = get_test_cases(test_files, cfg, tracer=tracer) if cfg.list_hooks or cfg.run_tests: -- cgit v1.2.1