Skip to content

Commit 0a82c5b

Browse files
Made logging of filtered test files more usefull (#396)
1 parent b4422bf commit 0a82c5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

redisbench_admin/utils/benchmark_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,8 +499,8 @@ def get_testfiles_to_process(test_glob, test_name, defaults_filename, test_regex
499499
final_files.append(a.string)
500500
files = final_files
501501
logging.info(
502-
"Running all specified benchmarks: {}".format(
503-
" ".join([str(x) for x in files])
502+
"Running a total of {} benchmarks: {}".format(
503+
len(files), " ".join([str(x) for x in files])
504504
)
505505
)
506506

0 commit comments

Comments
 (0)