Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
version:
- '1.8'
- '1.10'
- '~1.12.0-rc1'
- '1.12'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've been moving to the pattern of using:

version:
     - '1' # automatically expands to the latest stable 1.x release of Julia
     - 'min'
     - 'pre'

and sometimes adding lts. pre is the latest pre-release being tested before actual release, which we seem to always have these days.

os:
- ubuntu-latest
- macOS-latest
Expand Down
2 changes: 2 additions & 0 deletions test/junit_xml.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ function remove_variables(str)
# e.g. "UndefVarError: `x` not defined in ..." => "UndefVarError: x not defined"
# see: https://github.com/JuliaLang/julia/commit/449c7a2504191a96cfd382e0dbc0b40bf922cd6d
r"UndefVarError: `(?<var>[^`]*)` not defined in (.+)" => s"UndefVarError: \g<var> not defined",
# Remove the extra info added to `UndefVarError` messages in Julia v1.12
r"\s+Suggestion: check for spelling errors or missing imports." => "",
)
end

Expand Down
Loading