From 5ef513bd51e56294aebdfaea567bfb576d5f8fa5 Mon Sep 17 00:00:00 2001 From: Matthew Barber Date: Thu, 27 Apr 2023 12:40:02 +0100 Subject: [PATCH 1/2] Skip `test_matmul` --- array_api_tests/test_linalg.py | 1 + 1 file changed, 1 insertion(+) diff --git a/array_api_tests/test_linalg.py b/array_api_tests/test_linalg.py index 291f2bfb..75b9105e 100644 --- a/array_api_tests/test_linalg.py +++ b/array_api_tests/test_linalg.py @@ -277,6 +277,7 @@ def test_inv(x): # TODO: Test that the result is actually the inverse +@pytest.mark.skip(reason="flaky") @given( *two_mutual_arrays(dh.real_dtypes) ) From ba2ac0c05dd0140cca41313c2c556c3ddc521177 Mon Sep 17 00:00:00 2001 From: Matthew Barber Date: Thu, 27 Apr 2023 12:54:00 +0100 Subject: [PATCH 2/2] Skip `test_remainder` --- array_api_tests/test_operators_and_elementwise_functions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/array_api_tests/test_operators_and_elementwise_functions.py b/array_api_tests/test_operators_and_elementwise_functions.py index 086d5b75..ec519ebb 100644 --- a/array_api_tests/test_operators_and_elementwise_functions.py +++ b/array_api_tests/test_operators_and_elementwise_functions.py @@ -1347,6 +1347,7 @@ def test_real(x): unary_assert_against_refimpl("real", x, out, operator.attrgetter("real")) +@pytest.mark.skip(reason="flaky") @pytest.mark.parametrize("ctx", make_binary_params("remainder", dh.real_dtypes)) @given(data=st.data()) def test_remainder(ctx, data):