Skip to content

Commit

Permalink
Merge pull request #112 from vivliostyle/fix_wptrunner_return_value
Browse files Browse the repository at this point in the history
Fix return value of wptrunner
  • Loading branch information
jgraham committed May 21, 2015
2 parents d7ca7b6 + 009aae3 commit ff7b640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wptrunner/wptrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def main():
elif kwargs["list_disabled"]:
list_disabled(**kwargs)
else:
return run_tests(**kwargs)
return not run_tests(**kwargs)
except Exception:
import pdb, traceback
print traceback.format_exc()
Expand Down

0 comments on commit ff7b640

Please sign in to comment.