summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rw-r--r--test.py6
1 files changed, 6 insertions, 0 deletions
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: