diff options
author | Josh Matthews <josh@joshmatthews.net> | 2018-01-04 13:44:24 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2018-01-09 12:52:27 -0500 |
commit | 2b6f573eb5d1920cec5ad8a1ee98474b715e2e08 (patch) | |
tree | 3d900a9792c86b5a27865914f3e100b28ad9334a /python | |
parent | aa199307c86051e13b17a5feb77722ddcdeed5ce (diff) | |
download | servo-2b6f573eb5d1920cec5ad8a1ee98474b715e2e08.tar.gz servo-2b6f573eb5d1920cec5ad8a1ee98474b715e2e08.zip |
Update web-platform-tests to revision be5419e845d39089ba6dc338c1bd0fa279108317
Diffstat (limited to 'python')
-rw-r--r-- | python/requirements.txt | 2 | ||||
-rw-r--r-- | python/servo/lints/wpt_lint.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/python/requirements.txt b/python/requirements.txt index 11d7910b94d..162e68787d1 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -5,7 +5,7 @@ blessings == 1.6 mach == 0.6.0 mozdebug == 0.1 mozinfo == 0.8 -mozlog == 3.5 +mozlog == 3.6 setuptools == 18.5 toml == 0.9.2 diff --git a/python/servo/lints/wpt_lint.py b/python/servo/lints/wpt_lint.py index b1b98eec97a..a1c7e528c77 100644 --- a/python/servo/lints/wpt_lint.py +++ b/python/servo/lints/wpt_lint.py @@ -36,6 +36,6 @@ class Lint(LintRunner): from tools.lint import lint sys.path.remove(wpt_working_dir) file_dir = os.path.abspath(os.path.join(WPT_PATH, suite)) - returncode = lint.lint(file_dir, list(files), output_format="json", css_mode=False) + returncode = lint.lint(file_dir, list(files), output_format="json") if returncode: yield ("WPT Lint Tool", "", "lint error(s) in Web Platform Tests: exit status %s" % returncode) |