diff options
-rw-r--r-- | test.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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: |