From 5b8741433f10dc86edcabb321a66440a210ee309 Mon Sep 17 00:00:00 2001 From: anibalinn Date: Tue, 30 Jul 2024 14:11:49 -0300 Subject: [PATCH] updating the progress bar format --- behavex/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/behavex/runner.py b/behavex/runner.py index 6742af9..884cde6 100644 --- a/behavex/runner.py +++ b/behavex/runner.py @@ -174,7 +174,7 @@ def launch_behavex(): # shared variable to track scenarios that should be run but seems to be removed from execution (using scenarios.remove) shared_removed_scenarios = manager.dict() process_pool = multiprocessing.Pool(parallel_processes, initializer=init_multiprocessing(), initargs=(lock,)) - progress_bar_format = "{l_bar}{bar}| {n_fmt}/{total_fmt} [{elapsed}]" + progress_bar_format = "{l_bar}{bar:100} | {n_fmt}/{total_fmt}\n" progress_bar = tqdm(desc="Execution Progress", bar_format=progress_bar_format) if show_progress_bar else None try: if parallel_processes == 1 or get_param('dry_run'):