Skip to content

Commit 5ef5b73

Browse files
Default GROUP to "All" which runs Core tests for now
Running Pkg.test() without setting GROUP now uses "All", which currently maps to Core tests. This can be expanded later to include more groups. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3b1d9a2 commit 5ef5b73

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
using Pkg
22
using Test
33

4-
const GROUP = get(ENV, "GROUP", "Core")
4+
const GROUP = get(ENV, "GROUP", "All")
55

66
function activate_env(env_dir)
77
Pkg.activate(env_dir)
88
Pkg.develop(PackageSpec(path = dirname(@__DIR__)))
99
return Pkg.instantiate()
1010
end
1111

12-
if GROUP == "Core"
12+
if GROUP == "All" || GROUP == "Core"
1313
@time @testset "Core" begin
1414
include("core_tests.jl")
1515
end
@@ -42,5 +42,5 @@ elseif GROUP == "nopre"
4242
include("nopre/aqua_tests.jl")
4343
end
4444
else
45-
error("Unknown test group: $GROUP")
45+
error("Unknown test group: $GROUP. Valid groups: All, Core, Autodiff, GPU, Downstream, Reactant, nopre")
4646
end

0 commit comments

Comments
 (0)