From 0c0e4c8eae411b71ee9cfd1e6a926f03e0c02aed Mon Sep 17 00:00:00 2001 From: Pablo Galindo Date: Sun, 9 Dec 2018 19:46:17 +0000 Subject: [PATCH] Do not fail the build if cleaning fails - Warn only --- master/custom/steps.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/master/custom/steps.py b/master/custom/steps.py index 9427fdb9..9cb253c6 100644 --- a/master/custom/steps.py +++ b/master/custom/steps.py @@ -62,7 +62,8 @@ class Test(BaseTest): class Clean(ShellCommand): name = "clean" - warnOnFailure = 1 + flunkOnFailure = False + warnOnFailure = True description = ["cleaning"] descriptionDone = ["clean"] command = ["make", "distclean"]