From b2369c5adec36b6815493a3970dfaf03b03e7f78 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Sat, 9 Oct 2021 23:10:35 -0600 Subject: [PATCH] runner: fix tests always being run in quiet mode Fix an early return introduced in 9839097b816d2f7e1cb00d4f4e98919565d122a1, which resulted in a quiet like mode all the time. --- run.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/run.py b/run.py index 39dd6a523..3b7ae08cc 100755 --- a/run.py +++ b/run.py @@ -646,7 +646,6 @@ class TestRunner: r, expected_exit_code)); check_value = self.check() - return check_value if not check_value["failure"] and not check_value["skipped"]: if not self.quiet: @@ -711,9 +710,6 @@ class TestRunner: if count["failure"] or count["skipped"]: return count - # Covering cases like "tests/show-help" which do not have - # check.sh and/or no checks in test.yaml should be counted - # successful success_c = count["success"] count["success"] = 1 if not success_c else success_c -- 2.47.2