From 4e69a3391ebde58cbab948f9a82dd12bff4b7999 Mon Sep 17 00:00:00 2001 From: Serge Rehbinder Date: Mon, 26 Sep 2016 13:36:43 +0200 Subject: [PATCH] fix bug for test command result --- commands/test.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/commands/test.py b/commands/test.py index 3b17e55..1c1aa7a 100644 --- a/commands/test.py +++ b/commands/test.py @@ -537,6 +537,9 @@ def run(args, runner, logger): "board", retcode, "Click on the link to get the detailed test results") - + + if retcode != 0: + retcode = 1 + return retcode -- 2.39.2