|
16 | 16 | from . import xp as _xp
|
17 | 17 | from .typing import DataType, Index, Param, Scalar, ScalarType, Shape
|
18 | 18 |
|
19 |
| -pytestmark = pytest.mark.ci |
20 |
| - |
21 | 19 |
|
22 | 20 | def scalar_objects(
|
23 | 21 | dtype: DataType, shape: Shape
|
@@ -107,6 +105,7 @@ def test_getitem(shape, dtype, data):
|
107 | 105 | ph.assert_array_elements("__getitem__", out=out, expected=expected)
|
108 | 106 |
|
109 | 107 |
|
| 108 | +@pytest.mark.unvectorized |
110 | 109 | @given(
|
111 | 110 | shape=hh.shapes(),
|
112 | 111 | dtypes=hh.oneway_promotable_dtypes(dh.all_dtypes),
|
@@ -154,6 +153,7 @@ def test_setitem(shape, dtypes, data):
|
154 | 153 | )
|
155 | 154 |
|
156 | 155 |
|
| 156 | +@pytest.mark.unvectorized |
157 | 157 | @pytest.mark.data_dependent_shapes
|
158 | 158 | @given(hh.shapes(), st.data())
|
159 | 159 | def test_getitem_masking(shape, data):
|
@@ -199,6 +199,7 @@ def test_getitem_masking(shape, data):
|
199 | 199 | )
|
200 | 200 |
|
201 | 201 |
|
| 202 | +@pytest.mark.unvectorized |
202 | 203 | @given(hh.shapes(), st.data())
|
203 | 204 | def test_setitem_masking(shape, data):
|
204 | 205 | x = data.draw(hh.arrays(xps.scalar_dtypes(), shape=shape), label="x")
|
|
0 commit comments