Skip to content

Commit 29a33a5

Browse files
test: mark failing inversemodel solve as broken
Apparently this is due to a problem in `ControlSystemsBase``
1 parent b1e856e commit 29a33a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/downstream/inversemodel.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,12 +135,12 @@ tspan = (0.0, 1000.0)
135135
prob = ODEProblem(ssys, op, tspan)
136136
sol = solve(prob, Rodas5P())
137137

138-
@test SciMLBase.successful_retcode(sol)
138+
@test_broken SciMLBase.successful_retcode(sol)
139139

140140
# plot(sol, idxs=[model.tank.xc, model.tank.xT, model.controller.ctr_output.u], layout=3, sp=[1 2 3])
141141
# hline!([prob[cm.ref.k]], label="ref", sp=1)
142142

143-
@test sol(tspan[2], idxs = cm.tank.xc)getp(prob, cm.ref.k)(prob) atol=1e-2 # Test that the inverse model led to the correct reference
143+
@test_broken sol(tspan[2], idxs = cm.tank.xc)getp(prob, cm.ref.k)(prob) atol=1e-2 # Test that the inverse model led to the correct reference
144144

145145
# we need to provide `op` so the initialization system knows what to hold constant
146146
# the values don't matter

0 commit comments

Comments
 (0)