From 7381fd5460c2ec57fd2f794153acbc718e5521b1 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Fri, 24 Feb 2023 20:32:39 -0600 Subject: [PATCH] [ci] skip Dask tests on GPU builds --- tests/python_package_test/test_dask.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/python_package_test/test_dask.py b/tests/python_package_test/test_dask.py index 417efd4801d0..ea0933631577 100644 --- a/tests/python_package_test/test_dask.py +++ b/tests/python_package_test/test_dask.py @@ -57,6 +57,7 @@ pytestmark = [ pytest.mark.skipif(getenv('TASK', '') == 'mpi', reason='Fails to run with MPI interface'), + pytest.mark.skipif(getenv('TASK', '') == 'gpu', reason='Fails to run with GPU interface'), pytest.mark.skipif(getenv('TASK', '') == 'cuda', reason='Fails to run with CUDA interface') ]