Move JET tests to nopre group#521
Merged
ChrisRackauckas merged 6 commits intoSciML:masterfrom Jan 11, 2026
Merged
Conversation
.github/workflows/Tests.yml
Outdated
Comment on lines
35
to
36
| - version: "lts" | ||
| group: "JET" |
Member
There was a problem hiding this comment.
Suggested change
| - version: "lts" | |
| group: "JET" |
3 tasks
- Add `if: false` to Downgrade.yml to skip downgrade tests (see issue SciML#522) - Exclude Core and Downstream groups from pre Julia since JET test dependency cannot be resolved on pre-release Julia versions Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Contributor
Author
|
Added fixes for the failing CI:
This is similar to the approach in SciML/DelayDiffEq.jl#357 |
- Create test/nopre/Project.toml with JET dependency - Update runtests.jl to activate nopre environment for JET tests - Remove JET from main Project.toml test dependencies This fixes the pre-release Julia CI failures by isolating JET (which doesn't support pre-release Julia) into its own test environment. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Contributor
Author
|
Updated to properly fix the pre-release Julia tests:
This isolates JET (which doesn't support pre-release Julia) into its own test environment, so Core and Downstream tests can run on pre-release Julia without JET resolution failures. |
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 moves JET tests to a new test group 'nopre' that doesn't run on 'All'. This is to prevent JET tests from running on every CI run, as they can be slow and brittle.