@@ -119,6 +119,7 @@ def test_concat(dtypes, base_shape, data):
119119 )
120120
121121
122+ @pytest .mark .unvectorized
122123@given (
123124 x = hh .arrays (dtype = xps .scalar_dtypes (), shape = shared_shapes ()),
124125 axis = shared_shapes ().flatmap (
@@ -147,6 +148,7 @@ def test_expand_dims(x, axis):
147148 )
148149
149150
151+ @pytest .mark .unvectorized
150152@given (
151153 x = hh .arrays (
152154 dtype = xps .scalar_dtypes (), shape = hh .shapes (min_side = 1 ).filter (lambda s : 1 in s )
@@ -184,6 +186,7 @@ def test_squeeze(x, data):
184186 assert_array_ndindex ("squeeze" , x , x_indices = sh .ndindex (x .shape ), out = out , out_indices = sh .ndindex (out .shape ))
185187
186188
189+ @pytest .mark .unvectorized
187190@given (
188191 x = hh .arrays (dtype = xps .scalar_dtypes (), shape = hh .shapes ()),
189192 data = st .data (),
@@ -208,6 +211,7 @@ def test_flip(x, data):
208211 out_indices = reverse_indices , kw = kw )
209212
210213
214+ @pytest .mark .unvectorized
211215@given (
212216 x = hh .arrays (dtype = xps .scalar_dtypes (), shape = shared_shapes (min_dims = 1 )),
213217 axes = shared_shapes (min_dims = 1 ).flatmap (
@@ -248,6 +252,7 @@ def reshape_shapes(draw, shape):
248252 return tuple (rshape )
249253
250254
255+ @pytest .mark .unvectorized
251256@pytest .mark .skip ("flaky" ) # TODO: fix!
252257@given (
253258 x = hh .arrays (dtype = xps .scalar_dtypes (), shape = hh .shapes (max_side = MAX_SIDE )),
@@ -280,6 +285,7 @@ def roll_ndindex(shape: Shape, shifts: Tuple[int], axes: Tuple[int]) -> Iterator
280285 yield tuple ((i + sh ) % si for i , sh , si in zip (idx , all_shifts , shape ))
281286
282287
288+ @pytest .mark .unvectorized
283289@given (hh .arrays (dtype = xps .scalar_dtypes (), shape = shared_shapes ()), st .data ())
284290def test_roll (x , data ):
285291 shift_strat = st .integers (- hh .MAX_ARRAY_SIZE , hh .MAX_ARRAY_SIZE )
@@ -319,6 +325,7 @@ def test_roll(x, data):
319325 assert_array_ndindex ("roll" , x , x_indices = sh .ndindex (x .shape ), out = out , out_indices = shifted_indices , kw = kw )
320326
321327
328+ @pytest .mark .unvectorized
322329@given (
323330 shape = shared_shapes (min_dims = 1 ),
324331 dtypes = hh .mutually_promotable_dtypes (None ),
0 commit comments