Use SciMLTesting v1.2 (folder-based run_tests)#57
Merged
ChrisRackauckas merged 1 commit intoJun 14, 2026
Merged
Conversation
Convert test/runtests.jl to the SciMLTesting v1.2 folder-discovery model: `using SciMLTesting; run_tests()`. The inline Core test block is extracted to a self-contained top-level test/core_tests.jl (Core group). QA stays in test/qa/ with its own Project.toml. Behavior-preserving: GROUP=Core, GROUP=QA, and GROUP=All run exactly the same tests as before. Adds SciMLTesting + SafeTestsets to the root test deps and the QA sub-env; drops the now-unused Pkg test extra (the v1.2 harness owns all Pkg ops). test/test_groups.toml is unchanged. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
d6f886a to
5bf0cb7
Compare
Contributor
Author
|
Rebuilt this branch as the SciMLTesting v1.2 folder conversion (reset to upstream/main, then rebuilt the folder form). The Core block is now extracted to a self-contained |
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.
Converts
test/runtests.jlto the SciMLTesting v1.2 folder-discovery model:Layout
GROUP in ("All","Core")block fromruntests.jlis extracted into a self-contained top-leveltest/core_tests.jl(with its ownusing FunctionProperties, ComponentArrays, Random, Test). Core = top-leveltest/*.jl, run in the main test env.test/qa/qa.jl+test/qa/Project.toml, activated automatically by folder discovery.test/test_groups.tomlis unchanged (Core,QA).Deps
[extras]/[targets].test+[compat]: addSciMLTesting; keepSafeTestsets/Test/ComponentArrays/Random; drop the unusedPkgtest extra (the v1.2 harness owns allPkgoperations).test/qa/Project.toml: addSciMLTesting+SafeTestsets; dropPkg.Verification
Behavior-preserving. Ran locally on Julia 1.11 via
Pkg.test:GROUP=Core→ 10 pass (matches the old Core block)GROUP=All→ 10 pass (Core only; QA excluded from All, as before)GROUP=QA→ 7 pass, 2 broken (the two tracked@test_brokenmarkers for QA: Aqua/JET findings marked @test_broken pending fix #54, unchanged)This supersedes the earlier
@safetestsetcanonicalization on this branch (which would have changed Core to a Lux-based formulation — a behavior change this conversion deliberately avoids).Ignore until reviewed by @ChrisRackauckas.