Skip to content

Commit d0e96b2

Browse files
authored
Fix numbagg or bottlekneck skip (#9034)
1 parent 93b7a9e commit d0e96b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def _importorskip(
145145
)
146146
has_numbagg_or_bottleneck = has_numbagg or has_bottleneck
147147
requires_numbagg_or_bottleneck = pytest.mark.skipif(
148-
not has_scipy_or_netCDF4, reason="requires scipy or netCDF4"
148+
not has_numbagg_or_bottleneck, reason="requires numbagg or bottlekneck"
149149
)
150150
has_numpy_array_api, requires_numpy_array_api = _importorskip("numpy", "1.26.0")
151151
has_numpy_2, requires_numpy_2 = _importorskip("numpy", "2.0.0")

0 commit comments

Comments
 (0)