From e813b240a13a8dd6aea9cc48a3383c2c94041c2d Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Tue, 9 Apr 2024 07:22:13 -0500 Subject: [PATCH] Improve logging message listing steps to run --- compass/run/serial.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/compass/run/serial.py b/compass/run/serial.py index 24f435baa8..ab91f54861 100644 --- a/compass/run/serial.py +++ b/compass/run/serial.py @@ -314,8 +314,10 @@ def _log_and_run_test(test_case, logger, test_logger, quiet, # noqa: C901 if test_pass: log_function_call(function=_run_test, logger=test_logger) test_logger.info('') - test_list = ', '.join(test_case.steps_to_run) - test_logger.info(f'Running steps: {test_list}') + test_logger.info('Running steps:') + for step in test_case.steps_to_run: + test_logger.info(f' {step}') + test_logger.info('') try: _run_test(test_case, available_resources) run_status = success_str