4
4
using SafeTestsets, Test
5
5
6
6
# Required for running parallel test groups (copied from ModelingToolkit).
7
- const GROUP = get (ENV , " GROUP" , " All" )
7
+ # const GROUP = get(ENV, "GROUP", "All")
8
8
9
9
10
10
# ## Run Tests ###
11
11
@time begin
12
12
13
- if GROUP == " All" || GROUP == " ModelCreation"
13
+ # if GROUP == "All" || GROUP == "ModelCreation"
14
14
# Tests the `ReactionSystem` structure and its properties.
15
15
@time @safetestset " Reaction Structure" begin include (" reactionsystem_core/reaction_structure.jl" ) end
16
16
@time @safetestset " ReactionSystem Structure" begin include (" reactionsystem_core/reactionsystem_structure.jl" ) end
@@ -28,9 +28,9 @@ const GROUP = get(ENV, "GROUP", "All")
28
28
29
29
# Tests compositional and hierarchical modelling.
30
30
@time @safetestset " ReactionSystem Components Based Creation" begin include (" compositional_modelling/component_based_model_creation.jl" ) end
31
- end
31
+ # end
32
32
33
- if GROUP == " All" || GROUP == " Miscellaneous-NetworkAnalysis"
33
+ # if GROUP == "All" || GROUP == "Miscellaneous-NetworkAnalysis"
34
34
# Tests various miscellaneous features.
35
35
@time @safetestset " API" begin include (" miscellaneous_tests/api.jl" ) end
36
36
@time @safetestset " Compound Species" begin include (" miscellaneous_tests/compound_macro.jl" ) end
@@ -40,9 +40,9 @@ const GROUP = get(ENV, "GROUP", "All")
40
40
# Tests reaction network analysis features.
41
41
@time @safetestset " Conservation Laws" begin include (" network_analysis/conservation_laws.jl" ) end
42
42
@time @safetestset " Network Properties" begin include (" network_analysis/network_properties.jl" ) end
43
- end
43
+ # end
44
44
45
- if GROUP == " All" || GROUP == " Simulation"
45
+ # if GROUP == "All" || GROUP == "Simulation"
46
46
# Tests ODE, SDE, jump simulations, nonlinear solving, and steady state simulations.
47
47
@time @safetestset " ODE System Simulations" begin include (" simulation_and_solving/simulate_ODEs.jl" ) end
48
48
@time @safetestset " Automatic Jacobian Construction" begin include (" simulation_and_solving/jacobian_construction.jl" ) end
@@ -53,16 +53,16 @@ const GROUP = get(ENV, "GROUP", "All")
53
53
# Tests upstream SciML and DiffEq stuff.
54
54
@time @safetestset " MTK Structure Indexing" begin include (" upstream/mtk_structure_indexing.jl" ) end
55
55
@time @safetestset " MTK Problem Inputs" begin include (" upstream/mtk_problem_inputs.jl" ) end
56
- end
56
+ # end
57
57
58
- if GROUP == " All" || GROUP == " Spatial"
58
+ # if GROUP == "All" || GROUP == "Spatial"
59
59
# Tests spatial modelling and simulations.
60
60
@time @safetestset " PDE Systems Simulations" begin include (" spatial_modelling/simulate_PDEs.jl" ) end
61
61
@time @safetestset " Lattice Reaction Systems" begin include (" spatial_modelling/lattice_reaction_systems.jl" ) end
62
62
@time @safetestset " ODE Lattice Systems Simulations" begin include (" spatial_modelling/lattice_reaction_systems_ODEs.jl" ) end
63
- end
63
+ # end
64
64
65
- if GROUP == " All" || GROUP == " Visualisation-Extensions"
65
+ # if GROUP == "All" || GROUP == "Visualisation-Extensions"
66
66
# Tests network visualisation.
67
67
@time @safetestset " Latexify" begin include (" visualisation/latexify.jl" ) end
68
68
# Disable on Macs as can't install GraphViz via jll
@@ -74,6 +74,6 @@ const GROUP = get(ENV, "GROUP", "All")
74
74
# @time @safetestset "BifurcationKit Extension" begin include("extensions/bifurcation_kit.jl") end
75
75
# @time @safetestset "HomotopyContinuation Extension" begin include("extensions/homotopy_continuation.jl") end
76
76
# @time @safetestset "Structural Identifiability Extension" begin include("extensions/structural_identifiability.jl") end
77
- end
77
+ # end
78
78
79
79
end # @time
0 commit comments