summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2013-04-28 13:16:58 +0200
committerStefan Behnel <stefan_ml@behnel.de>2013-04-28 13:16:58 +0200
commitc6f1b6fd48c2da36ac847e1013c1282c901e41e0 (patch)
treeeb72374eaa72b72e11cad585514e157d86ce18a7 /test.py
parent3256ccb8eec06e782fdcc6f39e49dfa4c7896a17 (diff)
downloadpython-lxml-c6f1b6fd48c2da36ac847e1013c1282c901e41e0.tar.gz
add tests for parsing from HTTP URLs
Diffstat (limited to 'test.py')
-rw-r--r--test.py6
1 files changed, 4 insertions, 2 deletions
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)