diff options
author | Martin Robinson <mrobinson@igalia.com> | 2024-03-26 11:47:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-26 10:47:16 +0000 |
commit | 2463017c49373373d6af5e6a9f616abd486cd4d6 (patch) | |
tree | 72bbce0a8920b5ad9ed494f3bd8b56e29a3a55d9 /python/tidy/tidy.py | |
parent | 188f3caff168a217b0cff3641cb2dbff232cea1c (diff) | |
download | servo-2463017c49373373d6af5e6a9f616abd486cd4d6.tar.gz servo-2463017c49373373d6af5e6a9f616abd486cd4d6.zip |
tidy: Make sure to run WPT lints when `--all` is passed to tidy (#31874)
This also fixes the checked in WPT manifest.
Diffstat (limited to 'python/tidy/tidy.py')
-rw-r--r-- | python/tidy/tidy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tidy/tidy.py b/python/tidy/tidy.py index 1833db51187..dfc32085bcc 100644 --- a/python/tidy/tidy.py +++ b/python/tidy/tidy.py @@ -799,7 +799,7 @@ def run_wpt_lints(only_changed_files: bool): yield (WPT_CONFIG_INI_PATH, 0, f"{WPT_CONFIG_INI_PATH} is required but was not found") return - if not list(FileList("./tests/wpt", only_changed_files=True, progress=False)): + if not list(FileList("./tests/wpt", only_changed_files=only_changed_files, progress=False)): print("\r ➤ Skipping WPT lint checks, because no relevant files changed.") return |