From 12f6d2449b478afbcf442a39bc3f0048b1fa8c29 Mon Sep 17 00:00:00 2001 From: James Bourbeau Date: Mon, 30 Jan 2023 11:11:04 -0600 Subject: [PATCH] Remove Dask single-threaded setting in tests --- xarray/tests/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/xarray/tests/__init__.py b/xarray/tests/__init__.py index f1dd12a5675..9ff8de74ba3 100644 --- a/xarray/tests/__init__.py +++ b/xarray/tests/__init__.py @@ -101,8 +101,6 @@ def _importorskip( if has_dask: import dask - dask.config.set(scheduler="single-threaded") - class CountingScheduler: """Simple dask scheduler counting the number of computes.