Skip to content

Commit 290d1aa

Browse files
committed
Remove Julia v1.9 version checks from test suite
Since Julia v1.10 is now the LTS version, version checks for Julia v1.9 are no longer needed. This commit removes the conditional execution of AD tests based on Julia version while keeping the tests themselves. The VERSION >= v"1.9" conditions are now always true, so they have been removed. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 7413380 commit 290d1aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ end
3232
@safetestset "Utils Tests" begin
3333
include("utils.jl")
3434
end
35-
VERSION >= v"1.9" && @safetestset "AD Tests" begin
35+
@safetestset "AD Tests" begin
3636
include("ADtests.jl")
3737
end
38-
VERSION >= v"1.9" && @safetestset "AD Performance Regression Tests" begin
38+
@safetestset "AD Performance Regression Tests" begin
3939
include("AD_performance_regression.jl")
4040
end
4141
@safetestset "Optimization" begin

0 commit comments

Comments
 (0)