From 47a7887d86e5c99d8cdfd6fe99bea5688491063b Mon Sep 17 00:00:00 2001 From: Marc Tobias Metten Date: Wed, 20 Jan 2016 01:14:20 +0100 Subject: [PATCH] tests: skip tidylib, it cannot handle HTML5 --- tests/steps/api_result.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/steps/api_result.py b/tests/steps/api_result.py index 91c07296..4910c157 100644 --- a/tests/steps/api_result.py +++ b/tests/steps/api_result.py @@ -119,7 +119,7 @@ def api_result_is_valid(step, fmt): if world.response_format == 'html': document, errors = tidy_document(world.page, options={'char-encoding' : 'utf8'}) - assert(len(errors) == 0), "Errors found in HTML document:\n%s" % errors + # assert(len(errors) == 0), "Errors found in HTML document:\n%s" % errors world.results = document elif world.response_format == 'xml': _parse_xml() -- 2.45.1