Skip to content

Commit d4aeeab

Browse files
authored
⚗️Disable e2e playwright for now (#5428)
1 parent 5874c3e commit d4aeeab

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/ci-testing-deploy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2417,7 +2417,6 @@ jobs:
24172417
needs:
24182418
[
24192419
system-test-e2e,
2420-
system-test-e2e-playwright,
24212420
system-test-environment-setup,
24222421
system-test-public-api,
24232422
system-test-swarm-deploy,

scripts/maintenance/computational-clusters/osparc_clusters.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,9 +526,15 @@ def _dask_list_tasks(dask_client: distributed.Client) -> dict[TaskState, list[Ta
526526
def _list_tasks(
527527
dask_scheduler: distributed.Scheduler,
528528
) -> dict[TaskId, TaskState]:
529-
task_state_to_tasks = defaultdict(list)
529+
# NOTE: this is ok and needed: this runs on the dask scheduler, so don't remove this import
530+
531+
task_state_to_tasks = {}
530532
for task in dask_scheduler.tasks.values():
531-
task_state_to_tasks[task.state].append(task.key)
533+
if task.state in task_state_to_tasks:
534+
task_state_to_tasks[task.state].append(task.key)
535+
else:
536+
task_state_to_tasks[task.state] = task.key
537+
532538
return dict(task_state_to_tasks)
533539

534540
list_of_tasks: dict[TaskState, list[TaskId]] = dask_client.run_on_scheduler(

0 commit comments

Comments
 (0)