Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fetching suite experiements for proper behavior of IPlatform#wait_till_done_progress (Fix: 1653) #1654

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions idmtools_core/idmtools/entities/iplatform.py
Original file line number Diff line number Diff line change
Expand Up @@ -789,6 +789,7 @@ def wait_till_done_progress(self, item: IRunnableEntity, timeout: int = 60 * 60
prog = tqdm([], total=len(item.simulations), desc=wait_progress_desc if wait_progress_desc else f"Waiting on Experiment {item.name} to Finish running", unit="simulation")
child_attribute = 'simulations'
elif isinstance(item, Suite):
item.experiments = item.platform.get_children(item_id=item.id, item_type=ItemType.SUITE)
prog = tqdm([], total=len(item.experiments), desc=wait_progress_desc if wait_progress_desc else f"Waiting on Suite {item.name} to Finish running", unit="experiment")
child_attribute = 'experiments'
elif isinstance(item, IWorkflowItem):
Expand Down