Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/SublibraryCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,6 @@ jobs:
uses: "SciML/.github/.github/workflows/sublibrary-project-tests.yml@v1"
with:
check-bounds: auto
env:
JULIA_PKG_PRECOMPILE_AUTO: "0"
secrets: "inherit"
2 changes: 2 additions & 0 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,6 @@ jobs:
with:
coverage-directories: "src,ext,lib/ModelingToolkitBase/src,lib/ModelingToolkitBase/ext"
cache: false
env:
JULIA_PKG_PRECOMPILE_AUTO: "0"
secrets: "inherit"
3 changes: 3 additions & 0 deletions lib/ModelingToolkitBase/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ end
@safetestset "Debugging Test" include("debugging.jl")
@safetestset "Namespacing test" include("namespacing.jl")
@safetestset "LinearProblem Tests" include("linearproblem.jl")
end

if GROUP == "All" || GROUP == "BVP"
@safetestset "Optimal Control + Constraints Tests" include("bvproblem.jl")
end

Expand Down
3 changes: 3 additions & 0 deletions lib/ModelingToolkitBase/test/test_groups.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ versions = ["lts", "1", "pre"]
[InterfaceII]
versions = ["lts", "1", "pre"]

[BVP]
versions = ["lts", "1", "pre"]

[Initialization]
versions = ["lts", "1", "pre"]
# Memory-heavy (OOM-killed on the 4vcpu/8GB self-hosted runners, esp. on `pre`).
Expand Down
Loading