diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2012-11-20 19:57:04 +0100 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2012-11-20 19:57:04 +0100 |
commit | ce3051e953e6ba1938712f15246feb74bdec84dd (patch) | |
tree | 037a126c4fbc67dc2e2480bc8538ad269a63a691 /test.py | |
parent | 4ddb818394db40e60a95213995df65ab8fe5b830 (diff) | |
download | python-lxml-ce3051e953e6ba1938712f15246feb74bdec84dd.tar.gz |
exclude new xmlfile() tests in Py2.4 as they require the 'with' statement
Diffstat (limited to 'test.py')
-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: |