From bf2990e773b2df3bf917b5c954814fd23b1e2a63 Mon Sep 17 00:00:00 2001 From: Philip Hyunsu Cho Date: Fri, 31 Jul 2020 19:56:24 -0700 Subject: [PATCH] Add missing Pytest marks to AsyncIO unit test (#5968) --- tests/python-gpu/test_gpu_with_dask.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/python-gpu/test_gpu_with_dask.py b/tests/python-gpu/test_gpu_with_dask.py index 45209b258..f118c7188 100644 --- a/tests/python-gpu/test_gpu_with_dask.py +++ b/tests/python-gpu/test_gpu_with_dask.py @@ -272,6 +272,8 @@ async def run_from_dask_array_asyncio(scheduler_address): return output +@pytest.mark.skipif(**tm.no_dask()) +@pytest.mark.mgpu def test_with_asyncio(): with LocalCUDACluster() as cluster: with Client(cluster) as client: