Skip to content

Commit a90fff9

Browse files
Skip dask rolling (pydata#9909)
* Skip dask rolling * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Clearer skip * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 29bea84 commit a90fff9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

asv_bench/benchmarks/rolling.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import xarray as xr
55

6-
from . import parameterized, randn, requires_dask
6+
from . import _skip_slow, parameterized, randn, requires_dask
77

88
nx = 3000
99
long_nx = 30000
@@ -80,6 +80,9 @@ def time_rolling_construct(self, center, stride, use_bottleneck):
8080
class RollingDask(Rolling):
8181
def setup(self, *args, **kwargs):
8282
requires_dask()
83+
# TODO: Lazily skipped in CI as it is very demanding and slow.
84+
# Improve times and remove errors.
85+
_skip_slow()
8386
super().setup(**kwargs)
8487
self.ds = self.ds.chunk({"x": 100, "y": 50, "t": 50})
8588
self.da_long = self.da_long.chunk({"x": 10000})

0 commit comments

Comments
 (0)