From 30de5ea0c0d9b3010680f68f9aaaaf0b672fc7a2 Mon Sep 17 00:00:00 2001 From: "Adam Ginsburg (keflavich)" Date: Sun, 12 Jun 2022 17:50:50 -0400 Subject: [PATCH] fix missing fixture import; see https://github.com/pydata/xarray/pull/6650 --- spectral_cube/tests/test_dask.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spectral_cube/tests/test_dask.py b/spectral_cube/tests/test_dask.py index 30e5c23b7..fe8481b37 100644 --- a/spectral_cube/tests/test_dask.py +++ b/spectral_cube/tests/test_dask.py @@ -12,7 +12,7 @@ from astropy.utils import data try: - from distributed.utils_test import client, loop, cluster_fixture # noqa + from distributed.utils_test import client, loop, cluster_fixture, cleanup # noqa DISTRIBUTED_INSTALLED = True except ImportError: DISTRIBUTED_INSTALLED = False