Skip to content

Commit

Permalink
deal with pytest deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
fjetter committed Aug 20, 2024
1 parent 4cfcc22 commit fc085a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributed/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -8448,7 +8448,7 @@ def test_worker_clients_do_not_claim_ownership_of_serialize_futures(c, do_wait):
# client will not unpack the collection when using submit and will therefore
# not handle the dependencies in any way.
# See also https://github.com/dask/distributed/issues/7498
da = pytest.importorskip("dask.array")
da = pytest.importorskip("dask.array", exc_type=ImportError)
x = da.arange(10, chunks=(5,)).persist()
if do_wait:
wait(x)
Expand Down

0 comments on commit fc085a7

Please sign in to comment.