diff --git a/tests/python-sycl/test_sycl_simple_dask.py b/tests/python-sycl/test_sycl_simple_dask.py index 2d302573ecd1..42db766f2e29 100644 --- a/tests/python-sycl/test_sycl_simple_dask.py +++ b/tests/python-sycl/test_sycl_simple_dask.py @@ -20,6 +20,9 @@ def train_result(client, param, dtrain, num_rounds): class TestSYCLDask: # The simplest test verify only one node training. def test_simple(self): + print("dask:", dask.__version__) + print("distributed:", dask.distributed.__version__) + cluster = dask.distributed.LocalCluster(n_workers=1) client = dask.distributed.Client(cluster)