Skip to content

Commit

Permalink
Enable HTML validation warnings as failures
Browse files Browse the repository at this point in the history
Most problems that tidy detects appears to be classed as warnings, not
errors, as HTML5 validation rules can be quite lax.

This turns on warnings in our validation results just to see how many
we actually get.
  • Loading branch information
lunkwill42 committed Sep 23, 2024
1 parent 34d019d commit e086522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/web/crawler_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
'doctype': 'auto',
'output_xhtml': True,
'input_encoding': 'utf8',
'show-warnings': False,
'show-warnings': True,
}

TIDY_IGNORE = [
Expand Down

0 comments on commit e086522

Please sign in to comment.