Commit 02bd71a8 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Merge pull request #1035 from undingen/disable_lxml_objectify_tests

Disable lxml objectify tests
parents a32e3a41 fcefe947
...@@ -32,9 +32,10 @@ def install_and_test_lxml(): ...@@ -32,9 +32,10 @@ def install_and_test_lxml():
print "Applied lxml patch" print "Applied lxml patch"
subprocess.check_call([PYTHON_EXE, "setup.py", "build_ext", "-i", "--with-cython"], cwd=LXML_DIR) subprocess.check_call([PYTHON_EXE, "setup.py", "build_ext", "-i", "--with-cython"], cwd=LXML_DIR)
expected = [{'ran': 1381, 'failures': 28, 'errors': 5}] # We currently don't run the objectify tests because the assume that the python impl use refcounting.
run_test([PYTHON_EXE, "test.py"], cwd=LXML_DIR, expected=expected) expected = [{'ran': 1188, 'failures': 3, 'errors': 1}]
run_test([PYTHON_EXE, "test.py", "!.*test_objectify.py"], cwd=LXML_DIR, expected=expected)
create_virtenv(ENV_NAME, None, force_create = True) create_virtenv(ENV_NAME, None, force_create = True)
install_and_test_lxml() install_and_test_lxml()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment