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) ) 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):