Skip to content

Commit

Permalink
Fix web-platform-tests#11454: Set --verify-log-full to False for ci/c…
Browse files Browse the repository at this point in the history
…heck_stability.py

I'm not entirely sure why web-platform-tests#10988 made this default to on, given that
was a change of behaviour from before, so let's turn it back off
given it's causing breakage, as documented in web-platform-tests#11454.
  • Loading branch information
gsnedders committed Jun 11, 2018
1 parent acba5ff commit 31a9179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ci/check_stability.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def run(venv, wpt_args, **kwargs):
wpt_kwargs["install"] = wpt_kwargs["product"].split(":")[0] == "firefox"

wpt_kwargs["pause_after_test"] = False
wpt_kwargs["verify_log_full"] = True
wpt_kwargs["verify_log_full"] = False
if wpt_kwargs["repeat"] == 1:
wpt_kwargs["repeat"] = 10

Expand Down

0 comments on commit 31a9179

Please sign in to comment.