We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaab679 commit a8206a8Copy full SHA for a8206a8
services/dask-sidecar/tests/unit/conftest.py
@@ -121,6 +121,7 @@ def local_cluster(app_environment: EnvVarsDict) -> Iterator[distributed.LocalClu
121
) as cluster:
122
assert cluster
123
assert isinstance(cluster, distributed.LocalCluster)
124
+ print(cluster.workers)
125
yield cluster
126
127
@@ -129,6 +130,7 @@ def dask_client(
129
130
local_cluster: distributed.LocalCluster,
131
) -> Iterator[distributed.Client]:
132
with distributed.Client(local_cluster) as client:
133
+ client.wait_for_workers(1, timeout=10)
134
yield client
135
136
0 commit comments