Skip to content

Commit

Permalink
Stop running integration tests on CI for Julia 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mofeing committed Mar 14, 2024
1 parent 41cf0c7 commit fcafa0b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ using OMEinsum
include("Transformations_test.jl")
end

@testset "Integration tests" verbose = true begin
include("integration/ChainRules_test.jl")
include("integration/BlockArray_test.jl")
include("integration/Makie_test.jl")
# CI hangs on these tests for some unknown reason on Julia 1.9
if VERSION >= v"1.10"
@testset "Integration tests" verbose = true begin
include("integration/ChainRules_test.jl")
include("integration/BlockArray_test.jl")
include("integration/Makie_test.jl")
end
end

if haskey(ENV, "ENABLE_AQUA_TESTS")
Expand Down

0 comments on commit fcafa0b

Please sign in to comment.