Skip to content

Commit e8d349a

Browse files
committed
up
1 parent 48712ec commit e8d349a

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

test/meta/mtk_structure_indexing.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ begin
5050
sint = init(sprob, ImplicitEM(); save_everystep=false)
5151
jint = init(jprob, SSAStepper())
5252
nint = init(nprob, NewtonRaphson(); save_everystep=false)
53-
@test_broken ssint = init(ssprob, DynamicSS(Tsit5()); save_everystep=false)
53+
@test_broken ssint = init(ssprob, DynamicSS(Tsit5()); save_everystep=false) # https://github.com/SciML/SciMLBase.jl/issues/660
5454
integrators = [oint, sint, jint, nint]
5555

5656
# Creates solutions.
@@ -281,7 +281,7 @@ end
281281

282282
# Tests plotting.
283283
let
284-
@test_broken false # Currently broken for `ssol`.
284+
@test_broken false # Currently broken for `ssol` (https://github.com/SciML/SciMLBase.jl/issues/580)
285285
for sol in deepcopy([osol, jsol])
286286
# Single variable.
287287
@test length(plot(sol; idxs = X).series_list) == 1

test/runtests.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ using SafeTestsets
66

77
### Tests the properties of ReactionSystems. ###
88
@time @safetestset "Reactions" begin include("reactionsystem_structure/reactions.jl") end
9-
10-
exit()
119
@time @safetestset "ReactionSystem" begin include("reactionsystem_structure/reactionsystem.jl") end
1210
@time @safetestset "Higher Order Reactions" begin include("reactionsystem_structure/higher_order_reactions.jl") end
1311

@@ -58,8 +56,8 @@ using SafeTestsets
5856
@time @safetestset "HomotopyContinuation Extension" begin include("extensions/homotopy_continuation.jl") end
5957
@time @safetestset "Structural Identifiability Extension" begin include("extensions/structural_identifiability.jl") end
6058

61-
### Upstream SciML and DiffEq tests . ###
59+
### Upstream SciML and DiffEq tests. ###
6260
@time @safetestset "MTK Structure Indexing" begin include("meta/mtk_structure_indexing.jl") end
63-
@time @safetestset "MTK Structure Indexing" begin include("meta/mtk_problem_inputs.jl") end
61+
@time @safetestset "MTK Problem Inputs" begin include("meta/mtk_problem_inputs.jl") end
6462

6563
end # @time

0 commit comments

Comments
 (0)