Skip to content

Commit

Permalink
Merge pull request #1024 from ArnoStrouwen/CI_TRIGGER
Browse files Browse the repository at this point in the history
Split leaky testset into separate group
  • Loading branch information
ChrisRackauckas authored Feb 29, 2024
2 parents f5b80ec + ed0c3ad commit ecc90c4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- Core4
- Core5
- Core6
- Core7
- SDE1
- SDE2
- SDE3
Expand Down
17 changes: 11 additions & 6 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,6 @@ end
@testset "Core 3" begin
@time @safetestset "Adjoint Sensitivity" include("adjoint.jl")
@time @safetestset "automatic sensealg choice" include("automatic_sensealg_choice.jl")
@time @safetestset "Physical ODE Adjoint Regression Test" include("physical_ode_regression.jl")

@time @safetestset "Continuous adjoint params" include("adjoint_param.jl")
@time @safetestset "Continuous and discrete costs" include("mixed_costs.jl")
@time @safetestset "Fully Out of Place adjoint sensitivity" include("adjoint_oop.jl")
@time @safetestset "Differentiate LazyBuffer with ReverseDiff" include("lazybuffer.jl")
end
end

Expand Down Expand Up @@ -94,6 +88,17 @@ end
end
end

if GROUP == "All" || GROUP == "Core7"
@testset "Core 7" begin
@time @safetestset "Physical ODE Adjoint Regression Test" include("physical_ode_regression.jl")
@time @safetestset "Continuous adjoint params" include("adjoint_param.jl")
@time @safetestset "Continuous and discrete costs" include("mixed_costs.jl")
@time @safetestset "Fully Out of Place adjoint sensitivity" include("adjoint_oop.jl")
@time @safetestset "Differentiate LazyBuffer with ReverseDiff" include("lazybuffer.jl")
# Core 7 was split off from Core 3 due to leaks in the testsets described here https://github.com/SciML/SciMLSensitivity.jl/pull/1024
end
end

if GROUP == "All" || GROUP == "SDE1"
@testset "SDE 1" begin
@time @safetestset "SDE Adjoint" include("sde_stratonovich.jl")
Expand Down

0 comments on commit ecc90c4

Please sign in to comment.