Skip to content

Commit e0bb425

Browse files
authored
Merge pull request #185 from honno/flaky-matmul
Skip `test_matmul` and `test_remainder`
2 parents c2c6a9f + ba2ac0c commit e0bb425

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

array_api_tests/test_linalg.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ def test_inv(x):
277277

278278
# TODO: Test that the result is actually the inverse
279279

280+
@pytest.mark.skip(reason="flaky")
280281
@given(
281282
*two_mutual_arrays(dh.real_dtypes)
282283
)

array_api_tests/test_operators_and_elementwise_functions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1347,6 +1347,7 @@ def test_real(x):
13471347
unary_assert_against_refimpl("real", x, out, operator.attrgetter("real"))
13481348

13491349

1350+
@pytest.mark.skip(reason="flaky")
13501351
@pytest.mark.parametrize("ctx", make_binary_params("remainder", dh.real_dtypes))
13511352
@given(data=st.data())
13521353
def test_remainder(ctx, data):

0 commit comments

Comments
 (0)