Commit 2cd23819 by Gabriel Falcao Committed by Marc Abramowitz

fixing cli

parent 480e91c8
......@@ -79,7 +79,7 @@ def main(args=sys.argv[1:]):
)
result = runner.run()
failed = result or result.steps != result.steps_passed
failed = bool(result or result.steps != result.steps_passed)
raise SystemExit(int(failed))
if __name__ == '__main__':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment