Skip to content

Commit

Permalink
skip flaky addmul LinearAlgebra test
Browse files Browse the repository at this point in the history
  • Loading branch information
nsajko committed Sep 13, 2024
1 parent 2616634 commit c89e34f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stdlib/LinearAlgebra/test/addmul.jl
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@ end
Cc = copy(C)
returned_mat = mul!(C, A, B, zero(eltype(A)), β)
@test returned_mat === C
@test collect(returned_mat) β * Cc rtol=rtol
# This test is skipped because it is flakey, but should be fixed and put back (see #49966)
@test_skip collect(returned_mat) β * Cc rtol=rtol
end
end
end
Expand Down

0 comments on commit c89e34f

Please sign in to comment.