Skip to content

Commit

Permalink
Don't return failure for wpt run if not all tests pass.
Browse files Browse the repository at this point in the history
This isn't very useful unless there is expectation data avaiable, which is
not the common case
  • Loading branch information
jgraham committed Feb 6, 2018
1 parent 88c4bec commit ab20739
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/wpt/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,8 @@ def log(x):

def run_single(venv, **kwargs):
from wptrunner import wptrunner
return wptrunner.start(**kwargs)
wptrunner.start(**kwargs)
return


def main():
Expand Down

0 comments on commit ab20739

Please sign in to comment.