Isolate ModelingToolkit aggregate test environments#4749
Draft
ChrisRackauckas-Claude wants to merge 1 commit into
Draft
Isolate ModelingToolkit aggregate test environments#4749ChrisRackauckas-Claude wants to merge 1 commit into
ChrisRackauckas-Claude wants to merge 1 commit into
Conversation
Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
Member
Author
|
Scratchpad / commit d6200ad:
Prerequisite implementation and its synthetic regression tests: SciML/SciMLTesting.jl#23. |
Member
Author
|
CI gate classification (initial run):
This is the expected prerelease gate until SciML/SciMLTesting.jl#23 is merged and SciMLTesting 2.3 is registered. No source change, retry, or test bypass is appropriate for this run. |
This was referenced Jul 21, 2026
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.
This PR should be ignored until reviewed by @ChrisRackauckas.
Summary
Dependency
This is stacked on SciML/SciMLTesting.jl#23 and must remain draft until that change is merged and SciMLTesting 2.3 is available.
Motivation
The aggregate runner previously loaded LinearSolve 3.87 from one group, activated a later group environment resolving LinearSolve 4.3, and then combined the already-loaded module with the newer extension source. The extension referenced LinearSolve.ArnoldiMethodJL, which does not exist in 3.87. A fresh Julia process per environment-backed aggregate member prevents that mixed-module state. Direct GROUP selections intentionally retain their existing in-process behavior for fast iteration and CI lanes.
Local validation
Using Julia 1.10.11, the SciMLTesting #23 checkout, an isolated local depot, and a local wrapper that re-entered this repository test harness through the new fresh-process path:
No QA pass is claimed. An isolated aggregate QA run reported 10 passes and 3 failures: the clean-base Aqua piracy set, existing JET top-level analysis errors, and the SciMLTesting 2.3 public-docstring audit. Direct GROUP=QA behavior is unchanged. The 31-method clean-base piracy reproduction and historical boundary are tracked in #4670. The exact 28-name SciMLTesting 2.3 documentation exposure is recorded on #4715. No skip, broken marker, allow-list, relaxed assertion, or JET-mode weakening is included here.
A full aggregate pass is also not claimed: a clean-base cross-group state failure is under a separate audit rather than being hidden by this environment fix.
Process notes
I first reproduced the mixed LinearSolve versions in one Julia process, then confirmed that a fresh process resolves and loads one coherent version. The SciMLTesting prerequisite adds synthetic same-UUID v1/v2 regression coverage on Julia 1.10 and 1.12; its complete local suites passed 299/299 and 314/314 respectively. After validating each real environment-backed ModelingToolkit group, I audited direct imports, added only the dependencies actually used by each standalone test body, ran repository-wide formatting, synchronized the fork master without overwriting divergent commits, rebased this branch onto current upstream master, and repeated the formatting/diff checks.