From 30e7a4c3d641479ebdf9cf781b79cce9d87dd15f Mon Sep 17 00:00:00 2001 From: Tom White Date: Thu, 24 Feb 2022 14:11:33 +0000 Subject: [PATCH] Mark test_array_object.py::test_getitem_masking as having data dependent shapes --- array_api_tests/test_array_object.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/array_api_tests/test_array_object.py b/array_api_tests/test_array_object.py index 10969cbf..be03f5fa 100644 --- a/array_api_tests/test_array_object.py +++ b/array_api_tests/test_array_object.py @@ -106,7 +106,7 @@ def test_setitem(shape, data): # TODO: make mask tests optional - +@pytest.mark.data_dependent_shapes @given(hh.shapes(), st.data()) def test_getitem_masking(shape, data): x = data.draw(xps.arrays(xps.scalar_dtypes(), shape=shape), label="x")