From c6f1b6fd48c2da36ac847e1013c1282c901e41e0 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 28 Apr 2013 13:16:58 +0200 Subject: add tests for parsing from HTTP URLs --- test.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'test.py') diff --git a/test.py b/test.py index 008da074..5ae42e01 100644 --- a/test.py +++ b/test.py @@ -564,8 +564,10 @@ def main(argv): 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 ] + test_files = [ + test_file for test_file in test_files + if 'test_incremental_xmlfile.py' not in test_file + and 'test_http_io.py' not in test_file] if cfg.list_tests or cfg.run_tests: test_cases = get_test_cases(test_files, cfg, tracer=tracer) -- cgit v1.2.1