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 Apr 25, 2018
1 parent 47c60e6 commit 5a1b036
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/wpt/run.py
Expand Up @@ -457,7 +457,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 5a1b036

Please sign in to comment.