Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
TorkelE committed Apr 8, 2024
1 parent 48712ec commit e8d349a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/meta/mtk_structure_indexing.jl
Expand Up @@ -50,7 +50,7 @@ begin
sint = init(sprob, ImplicitEM(); save_everystep=false)
jint = init(jprob, SSAStepper())
nint = init(nprob, NewtonRaphson(); save_everystep=false)
@test_broken ssint = init(ssprob, DynamicSS(Tsit5()); save_everystep=false)
@test_broken ssint = init(ssprob, DynamicSS(Tsit5()); save_everystep=false) # https://github.com/SciML/SciMLBase.jl/issues/660
integrators = [oint, sint, jint, nint]

# Creates solutions.
Expand Down Expand Up @@ -281,7 +281,7 @@ end

# Tests plotting.
let
@test_broken false # Currently broken for `ssol`.
@test_broken false # Currently broken for `ssol` (https://github.com/SciML/SciMLBase.jl/issues/580)
for sol in deepcopy([osol, jsol])
# Single variable.
@test length(plot(sol; idxs = X).series_list) == 1
Expand Down
6 changes: 2 additions & 4 deletions test/runtests.jl
Expand Up @@ -6,8 +6,6 @@ using SafeTestsets

### Tests the properties of ReactionSystems. ###
@time @safetestset "Reactions" begin include("reactionsystem_structure/reactions.jl") end

exit()
@time @safetestset "ReactionSystem" begin include("reactionsystem_structure/reactionsystem.jl") end
@time @safetestset "Higher Order Reactions" begin include("reactionsystem_structure/higher_order_reactions.jl") end

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

### Upstream SciML and DiffEq tests . ###
### Upstream SciML and DiffEq tests. ###
@time @safetestset "MTK Structure Indexing" begin include("meta/mtk_structure_indexing.jl") end
@time @safetestset "MTK Structure Indexing" begin include("meta/mtk_problem_inputs.jl") end
@time @safetestset "MTK Problem Inputs" begin include("meta/mtk_problem_inputs.jl") end

end # @time

0 comments on commit e8d349a

Please sign in to comment.