grouped-tests: QA group defaults to Julia v1 only#104
Merged
ChrisRackauckas merged 2 commits intoJun 24, 2026
Conversation
QA (Aqua/JET/ExplicitImports) is version-agnostic, so running it once per declared version just multiplies the job count with no added signal — and the lts half is exactly where the <1.11 [sources]-backport QA failures bite. Clamp the QA group to ["1"] centrally in the matrix generator (root-matrix + sublibrary modes) so every grouped-tests@v1 consumer gets it without trimming [QA] versions in each test_groups.toml. For a 56-sublib monorepo like OrdinaryDiffEq this drops ~50 redundant QA jobs. Verified locally: a fixture with [QA] versions=["lts","1"] now emits QA only on version 1 in both --root-matrix and --projects-matrix, while Core (["lts","1","pre"]) and GPU are unchanged. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
QA now defaults to Julia v1 only (clamped centrally in the matrix generator), so the .github test suite's expected matrices drop the (QA, lts) cells: projects-matrix default groups, the build_root_matrix excludes test, and the OrdinaryDiffEq-reproduction test (now 45 cells, not 46). Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Make the QA test group run on Julia
1only by default, centrally inscripts/compute_affected_sublibraries.jl(the matrix generator behindgrouped-tests.yml@v1). Clamps QA to["1"]in the root-matrix and sublibrary matrix paths, and sets the no-test_groups.toml defaultQA => ["1"].Why
QA = Aqua / JET / ExplicitImports, which is essentially version-agnostic, so running it once per declared version (
["lts","1"]in nearly everytest_groups.toml) just doubles the QA job count with no added signal. For a 56-sublibrary monorepo like OrdinaryDiffEq that's ~50 redundant QA jobs. The lts half is also exactly where the<1.11 [sources]-backport QA failures bite (NeuralLyapunov, OUQ, …), so dropping QA-on-lts removes that whole class of false reds.Per-repo
[QA] versions = [...]is now intentionally overridden to["1"](documented in the script header), so no 100s-filetest_groups.tomlsweep is needed — a future tidy-up can drop the now-moot[QA] versionslines.Verification (local)
A fixture with
[QA] versions = ["lts","1"]:--root-matrix→ QA emits version1only;Corestilllts/1/pre;GPUstill1.--projects-matrix(lib sublibrary) → QA emits1only.Runic
--checkclean.Takes effect for consumers once
v1is retagged.Ignore until reviewed by @ChrisRackauckas.