@@ -255,6 +255,8 @@ async def test_client_reprs():
255
255
await cluster .shutdown ()
256
256
257
257
258
+ # FIXME: PytestUnraisableExceptionWarning: Exception ignored in: <function Client.__del__ at ...>
259
+ # RuntimeError: IOLoop is closed
258
260
async def test_cluster_widget ():
259
261
pytest .importorskip ("ipywidgets" )
260
262
@@ -284,6 +286,7 @@ def test():
284
286
await loop .run_in_executor (None , test )
285
287
286
288
289
+ # FIXME: UserWarning: Scheduler already contains a plugin with name worker-status; overwriting.
287
290
async def test_dashboard_link_from_public_address ():
288
291
pytest .importorskip ("bokeh" )
289
292
@@ -333,6 +336,7 @@ async def test_create_cluster_with_GatewayCluster_constructor():
333
336
assert not clusters
334
337
335
338
339
+ # FIXME: UserWarning: Scheduler already contains a plugin with name worker-status; overwriting.
336
340
async def test_sync_constructors ():
337
341
def test ():
338
342
with g .gateway_client (asynchronous = False ) as gateway :
@@ -352,6 +356,8 @@ def test():
352
356
await loop .run_in_executor (None , test )
353
357
354
358
359
+ # FIXME: PytestUnraisableExceptionWarning: Exception ignored in: <function Gateway.__del__ at ...>
360
+ # RuntimeError: Accessing the loop property while the loop is not running is not supported
355
361
async def test_GatewayCluster_shutdown_on_close ():
356
362
async with temp_gateway () as g :
357
363
@@ -397,6 +403,8 @@ def test():
397
403
assert not clusters
398
404
399
405
406
+ # FIXME: PytestUnraisableExceptionWarning: Exception ignored in: <function Gateway.__del__ at ...>
407
+ # RuntimeError: Accessing the loop property while the loop is not running is not supported
400
408
async def test_GatewayCluster_cleanup_atexit ():
401
409
async with temp_gateway () as g :
402
410
0 commit comments