Skip to content

Commit

Permalink
Fix #11454: Set --verify-log-full to False for ci/check_stability.py (#…
Browse files Browse the repository at this point in the history
…11464)

I'm not entirely sure why #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 #11454.
  • Loading branch information
gsnedders authored Jun 12, 2018
1 parent 98530fb commit 33280b7
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 33280b7

Please sign in to comment.