From 38ffe80ce8c2ca5eff4287cb75731813e69ff0d9 Mon Sep 17 00:00:00 2001 From: Craig Date: Thu, 9 Jan 2025 10:39:05 -0800 Subject: [PATCH] remove unneeded debug detail --- testdriver/testplan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testdriver/testplan.py b/testdriver/testplan.py index 86c24d78..7e0287bb 100644 --- a/testdriver/testplan.py +++ b/testdriver/testplan.py @@ -377,7 +377,7 @@ def run_all_single_tests(self, tests_per_execution=1): test_lines = [] test_num += 1 - if self.run_limit and test_num > self.run_limit: + if self.run_limit and test_num > self.run_limit and self.debug: logging.debug('** Stopped after %d tests', (test_num - 1)) break