Skip to content
Merged
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: 1 addition & 1 deletion .github/workflows/DowngradeSublibraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
with:
julia-version: "1.11"
skip: "Pkg,TOML,Statistics,LinearAlgebra,SparseArrays,InteractiveUtils,OrdinaryDiffEqCore,OrdinaryDiffEqNonlinearSolve,OrdinaryDiffEqDifferentiation"
group-env-name: "ODEDIFFEQ_TEST_GROUP"
group-env-name: "GROUP"
group-env-value: "Core"
# Every lib/* sublibrary is downgrade-tested (projects auto-discovered, no exclusions).
2 changes: 1 addition & 1 deletion .github/workflows/SublibraryCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
sublibrary-ci:
uses: "SciML/.github/.github/workflows/sublibrary-project-tests.yml@v1"
with:
group-env-name: ODEDIFFEQ_TEST_GROUP
group-env-name: GROUP
check-bounds: auto
secrets: "inherit"
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ which relies on OrdinaryDiffEqCore.
Each sublibrary declares its CI jobs through `test/test_groups.toml`. Groups listed there
(e.g. `Core`, `QA`, `GPU`, `ModelingToolkit`) become matrix entries dispatched by
`.github/scripts/compute_affected_sublibraries.jl`. The group name is passed to the
sublibrary's `test/runtests.jl` via `ENV["ODEDIFFEQ_TEST_GROUP"]`.
sublibrary's `test/runtests.jl` via `ENV["GROUP"]`.

### Skipping a group on dependency-graph triggers (`local_only`)

Expand Down
2 changes: 1 addition & 1 deletion lib/DelayDiffEq/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

if TEST_GROUP == "ALL" || TEST_GROUP == "Interface"
@time @safetestset "AD Tests" begin
Expand Down
2 changes: 1 addition & 1 deletion lib/DiffEqBase/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using Pkg
using SafeTestsets
using Test

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "Core")
const TEST_GROUP = get(ENV, "GROUP", "Core")

function activate_downstream_env()
Pkg.activate(joinpath(@__DIR__, "downstream"))
Expand Down
2 changes: 1 addition & 1 deletion lib/DiffEqDevTools/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using DiffEqDevTools
using SciMLTesting
using Test

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/GlobalDiffEq/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ using Test
using SciMLTesting

run_tests(;
env = "ODEDIFFEQ_TEST_GROUP",
env = "GROUP",
core = function ()
@safetestset "Basic functionality" begin
include("basic_functionality_tests.jl")
Expand Down
2 changes: 1 addition & 1 deletion lib/ImplicitDiscreteSolve/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ using SciMLBase
using SafeTestsets
using SciMLTesting

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqAMF/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using SciMLTesting
using Test
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
4 changes: 2 additions & 2 deletions lib/OrdinaryDiffEqAdamsBashforthMoulton/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using Pkg
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand All @@ -20,7 +20,7 @@ if TEST_GROUP == "Core" || TEST_GROUP == "ALL"
end

# Threaded tests require Polyester.jl (for FastBroadcast.Threaded() support).
# Runs only on explicit `ODEDIFFEQ_TEST_GROUP=Threaded` — the SublibraryCI
# Runs only on explicit `GROUP=Threaded` — the SublibraryCI
# matrix (lib/OrdinaryDiffEqAdamsBashforthMoulton/test/test_groups.toml)
# schedules this as its own Julia 1 / 2-thread job. Matches the GPU-group
# convention in sibling sublibs (LowStorageRK, Rosenbrock, BDF).
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqBDF/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using Pkg
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_gpu_env()
Pkg.activate(joinpath(@__DIR__, "gpu"))
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqCore/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using Pkg
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_gpu_env()
Pkg.activate(joinpath(@__DIR__, "gpu"))
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqDefault/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using Pkg
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_gpu_env()
Pkg.activate(joinpath(@__DIR__, "gpu"))
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqDifferentiation/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using SafeTestsets
using Pkg
using SciMLTesting

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_sparse_env()
Pkg.activate(joinpath(@__DIR__, "sparse"))
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqExplicitRK/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqExplicitTableaus/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using SciMLTesting

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqExponentialRK/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqExtrapolation/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqFIRK/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqFeagin/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqFunctionMap/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqHighOrderRK/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqIMEXMultistep/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqImplicitTableaus/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using SciMLTesting

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqLinear/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using Pkg
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_gpu_env()
Pkg.activate(joinpath(@__DIR__, "gpu"))
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqLowOrderRK/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqLowStorageRK/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using Pkg
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_gpu_env()
Pkg.activate(joinpath(@__DIR__, "gpu"))
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqMultirate/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqNewmark/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ using OrdinaryDiffEqNewmark, Test, RecursiveArrayTools, DiffEqDevTools
using LinearAlgebra: norm
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqNonlinearSolve/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using SafeTestsets
using Pkg
using SciMLTesting

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_modelingtoolkit_env()
Pkg.activate(joinpath(@__DIR__, "modelingtoolkit"))
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqNordsieck/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqPDIRK/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqPRK/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqQPRK/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqRKIP/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using Pkg
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_gpu_env()
Pkg.activate(joinpath(@__DIR__, "gpu"))
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqRKN/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqRosenbrock/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using Pkg
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_gpu_env()
Pkg.activate(joinpath(@__DIR__, "gpu"))
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqRosenbrockTableaus/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using SciMLTesting

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqSDIRK/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqSIMDRK/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqSSPRK/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqStabilizedIRK/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqStabilizedRK/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using Pkg
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_gpu_env()
Pkg.activate(joinpath(@__DIR__, "gpu"))
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqSymplecticRK/test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SciMLTesting
using SafeTestsets

const TEST_GROUP = get(ENV, "ODEDIFFEQ_TEST_GROUP", "ALL")
const TEST_GROUP = get(ENV, "GROUP", "ALL")

function activate_qa_env()
return activate_group_env(joinpath(@__DIR__, "qa"); parent = [dirname(@__DIR__), joinpath(@__DIR__, "..", "..", "..")])
Expand Down
Loading
Loading