Use SciMLTesting v1.2 (folder-based run_tests)#86
Merged
ChrisRackauckas merged 1 commit intoJun 14, 2026
Merged
Conversation
Convert the grouped-tests harness to the SciMLTesting v1.2 folder model. runtests.jl is now `using SciMLTesting; run_tests()`; group membership is discovered from the test/ folder layout + test_groups.toml (unchanged). Core = top-level test/*.jl (alloc_tests.jl). QA = test/qa/ (jet_tests.jl) with its sub-env Project.toml. No file moves were needed; the existing layout already matches the folder model. Added SciMLTesting to the root [extras]/[targets].test (+ [compat]) and dropped Pkg, which was only used by the old runtests.jl QA-activation block that the v1.2 harness now owns. Added SciMLTesting + SafeTestsets to test/qa/Project.toml (its jet_tests.jl runs under @safetestset via folder discovery). Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
778ed2a to
79a163a
Compare
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.
Convert PDEBase.jl to the SciMLTesting v1.2 folder model.
test/runtests.jlis now:Group membership is discovered from the
test/folder layout plus the existingtest/test_groups.toml(unchanged):test/*.jl(alloc_tests.jl).test/qa/(jet_tests.jl) with its sub-envProject.toml.No file moves were needed — the existing layout already matches the folder
model.
Dep edits: added
SciMLTestingto the root[extras]/[targets].test(+
[compat]) and droppedPkg, which was only used by the oldruntests.jlQA-activation block that the v1.2 harness now owns. AddedSciMLTesting+SafeTestsetstotest/qa/Project.toml, whosejet_tests.jlruns under
@safetestsetvia folder discovery.Behavior-preserving: GROUP=Core/All runs
alloc_tests.jl; GROUP=QA runsjet_tests.jlin the QA sub-env — matching the previous dispatch.Supersedes the older v1.0.0 run_tests attempt on this branch.
Ignore until reviewed by @ChrisRackauckas.