(window_shape, axis)
| 877 | ], |
| 878 | ) |
| 879 | def test_sliding_window_errors(window_shape, axis): |
| 880 | arr = da.zeros((4, 3)) |
| 881 | with pytest.raises(ValueError): |
| 882 | sliding_window_view(arr, window_shape, axis) |
| 883 | |
| 884 | |
| 885 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…