Skip to content

Commit

Permalink
updating the progress bar format
Browse files Browse the repository at this point in the history
  • Loading branch information
anibalinn committed Jul 30, 2024
1 parent 97b6b4b commit 5b87414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion behavex/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'):
Expand Down

0 comments on commit 5b87414

Please sign in to comment.