Skip to content
Merged
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions test/qa/Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[deps]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
LinearSolve = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
SciMLTesting = "09d9d899-5365-40a9-917a-5f67fddea283"
Expand All @@ -12,6 +13,7 @@ LinearSolve = {path = "../.."}
[compat]
Aqua = "0.8"
ExplicitImports = "1.10"
JET = "0.9, 0.11"
LinearSolve = "3"
SafeTestsets = "0.1, 1"
SciMLTesting = "1"
Expand Down
File renamed without changes.
14 changes: 7 additions & 7 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -106,16 +106,15 @@ else
# Don't run Enzyme tests on prerelease or Julia >= 1.12 (Enzyme
# compatibility issues). See:
# https://github.com/SciML/LinearSolve.jl/issues/817
"NoPre" => function ()
"AD" => function ()
if isempty(VERSION.prerelease)
activate_group_env(joinpath(@__DIR__, "NoPre"))
@time @safetestset "Mooncake Derivative Rules" include("NoPre/mooncake.jl")
@time @safetestset "JET Tests" include("NoPre/jet.jl")
@time @safetestset "Static Arrays" include("NoPre/static_arrays.jl")
@time @safetestset "Caching Allocation Tests" include("NoPre/caching_allocation_tests.jl")
activate_group_env(joinpath(@__DIR__, "AD"))
@time @safetestset "Mooncake Derivative Rules" include("AD/mooncake.jl")
@time @safetestset "Static Arrays" include("AD/static_arrays.jl")
@time @safetestset "Caching Allocation Tests" include("AD/caching_allocation_tests.jl")
# Disable Enzyme tests on Julia >= 1.12 due to compatibility issues
if VERSION < v"1.12.0-"
@time @safetestset "Enzyme Derivative Rules" include("NoPre/enzyme.jl")
@time @safetestset "Enzyme Derivative Rules" include("AD/enzyme.jl")
end
end
return nothing
Expand Down Expand Up @@ -209,6 +208,7 @@ else
if isempty(VERSION.prerelease)
activate_group_env(joinpath(@__DIR__, "qa"))
@time @safetestset "Quality Assurance" include("qa/qa.jl")
@time @safetestset "JET Tests" include("qa/jet.jl")
end
return nothing
end,
Expand Down
2 changes: 1 addition & 1 deletion test/test_groups.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ versions = ["lts", "1"]
runner = "self-hosted"
num_threads = 2

[NoPre]
[AD]
versions = ["lts", "1"]
runner = "self-hosted"
num_threads = 2
Expand Down
Loading