Skip to content

Commit 9652e06

Browse files
committed
skip test with singular linsolve
1 parent 415ebc0 commit 9652e06

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/test_wheels.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,10 @@ end
7878
model = complete(model)
7979
ssys = structural_simplify(IRSystem(model))
8080
prob = ODEProblem(ssys, [], (0, 4))
81-
sol = solve(prob, Rodas4(autodiff=false), abstol=1e-8, reltol=1e-8)
82-
@test_broken !all(iszero, sol.u)
81+
@test_skip begin # Singular linear system
82+
sol = solve(prob, Rodas4(autodiff=false), abstol=1e-8, reltol=1e-8)
83+
@test_broken !all(iszero, sol.u)
84+
end
8385
# first(Multibody.render(model, sol, 0, show_axis=true))
8486

8587
# ==============================================================================

0 commit comments

Comments
 (0)