Skip to content

Commit 0f378bd

Browse files
committed
revert parallelisation
1 parent a11be3a commit 0f378bd

File tree

2 files changed

+12
-16
lines changed

2 files changed

+12
-16
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
group:
15-
- ModelCreation
16-
- Miscellaneous-NetworkAnalysis
17-
- Simulation
18-
- Spatial
19-
- Visualisation-Extensions
15+
- Core
2016
version:
2117
- '1.10.2'
2218
steps:

test/runtests.jl

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
using SafeTestsets, Test
55

66
# Required for running parallel test groups (copied from ModelingToolkit).
7-
const GROUP = get(ENV, "GROUP", "All")
7+
#const GROUP = get(ENV, "GROUP", "All")
88

99

1010
### Run Tests ###
1111
@time begin
1212

13-
if GROUP == "All" || GROUP == "ModelCreation"
13+
#if GROUP == "All" || GROUP == "ModelCreation"
1414
# Tests the `ReactionSystem` structure and its properties.
1515
@time @safetestset "Reaction Structure" begin include("reactionsystem_core/reaction_structure.jl") end
1616
@time @safetestset "ReactionSystem Structure" begin include("reactionsystem_core/reactionsystem_structure.jl") end
@@ -28,9 +28,9 @@ const GROUP = get(ENV, "GROUP", "All")
2828

2929
# Tests compositional and hierarchical modelling.
3030
@time @safetestset "ReactionSystem Components Based Creation" begin include("compositional_modelling/component_based_model_creation.jl") end
31-
end
31+
#end
3232

33-
if GROUP == "All" || GROUP == "Miscellaneous-NetworkAnalysis"
33+
#if GROUP == "All" || GROUP == "Miscellaneous-NetworkAnalysis"
3434
# Tests various miscellaneous features.
3535
@time @safetestset "API" begin include("miscellaneous_tests/api.jl") end
3636
@time @safetestset "Compound Species" begin include("miscellaneous_tests/compound_macro.jl") end
@@ -40,9 +40,9 @@ const GROUP = get(ENV, "GROUP", "All")
4040
# Tests reaction network analysis features.
4141
@time @safetestset "Conservation Laws" begin include("network_analysis/conservation_laws.jl") end
4242
@time @safetestset "Network Properties" begin include("network_analysis/network_properties.jl") end
43-
end
43+
#end
4444

45-
if GROUP == "All" || GROUP == "Simulation"
45+
#if GROUP == "All" || GROUP == "Simulation"
4646
# Tests ODE, SDE, jump simulations, nonlinear solving, and steady state simulations.
4747
@time @safetestset "ODE System Simulations" begin include("simulation_and_solving/simulate_ODEs.jl") end
4848
@time @safetestset "Automatic Jacobian Construction" begin include("simulation_and_solving/jacobian_construction.jl") end
@@ -53,16 +53,16 @@ const GROUP = get(ENV, "GROUP", "All")
5353
# Tests upstream SciML and DiffEq stuff.
5454
@time @safetestset "MTK Structure Indexing" begin include("upstream/mtk_structure_indexing.jl") end
5555
@time @safetestset "MTK Problem Inputs" begin include("upstream/mtk_problem_inputs.jl") end
56-
end
56+
#end
5757

58-
if GROUP == "All" || GROUP == "Spatial"
58+
#if GROUP == "All" || GROUP == "Spatial"
5959
# Tests spatial modelling and simulations.
6060
@time @safetestset "PDE Systems Simulations" begin include("spatial_modelling/simulate_PDEs.jl") end
6161
@time @safetestset "Lattice Reaction Systems" begin include("spatial_modelling/lattice_reaction_systems.jl") end
6262
@time @safetestset "ODE Lattice Systems Simulations" begin include("spatial_modelling/lattice_reaction_systems_ODEs.jl") end
63-
end
63+
#end
6464

65-
if GROUP == "All" || GROUP == "Visualisation-Extensions"
65+
#if GROUP == "All" || GROUP == "Visualisation-Extensions"
6666
# Tests network visualisation.
6767
@time @safetestset "Latexify" begin include("visualisation/latexify.jl") end
6868
# Disable on Macs as can't install GraphViz via jll
@@ -74,6 +74,6 @@ const GROUP = get(ENV, "GROUP", "All")
7474
# @time @safetestset "BifurcationKit Extension" begin include("extensions/bifurcation_kit.jl") end
7575
# @time @safetestset "HomotopyContinuation Extension" begin include("extensions/homotopy_continuation.jl") end
7676
# @time @safetestset "Structural Identifiability Extension" begin include("extensions/structural_identifiability.jl") end
77-
end
77+
#end
7878

7979
end # @time

0 commit comments

Comments
 (0)