Skip to content

Commit 4de3ec4

Browse files
ChrisRackauckasclaude
authored andcommitted
Normalize nopre test group into canonical QA
The nopre group carried only standard QA checks (JET, Aqua), so it is renamed to the canonical QA group at versions ["lts","1"]. The dep env test/nopre is renamed to test/qa and the runtests dispatch keys on GROUP == "QA". Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 20fd3bc commit 4de3ec4

7 files changed

Lines changed: 7 additions & 18 deletions

File tree

test/nopre/nopre_tests.jl

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,8 @@
22
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
33
ComponentArrays = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66"
44
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
5-
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
6-
SciMLTesting = "09d9d899-5365-40a9-917a-5f67fddea283"
75
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
86

97
[compat]
108
Aqua = "0.8.14"
119
JET = "0.9, 0.10, 0.11"
12-
SafeTestsets = "0.0.1, 0.1"
13-
SciMLTesting = "1"
14-
Test = "1"

test/qa/qa.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# QA group entry: runs Aqua and JET checks (deps in test/qa/Project.toml).
2+
include("aqua_tests.jl")
3+
include("jet_tests.jl")

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ run_tests(;
1919
env = joinpath(@__DIR__, "Reactant"),
2020
body = joinpath(@__DIR__, "Reactant", "reactant_tests.jl"),
2121
),
22-
"nopre" => (;
23-
env = joinpath(@__DIR__, "nopre"),
24-
body = joinpath(@__DIR__, "nopre", "nopre_tests.jl"),
22+
"QA" => (;
23+
env = joinpath(@__DIR__, "qa"),
24+
body = joinpath(@__DIR__, "qa", "qa.jl"),
2525
),
2626
),
2727
all = ["Core"],

test/test_groups.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ versions = ["lts", "1"]
1313
[Reactant]
1414
versions = ["lts", "1"]
1515

16-
[nopre]
16+
[QA]
1717
versions = ["lts", "1"]

0 commit comments

Comments
 (0)