Skip to content

Commit

Permalink
Remove Julia <1.10 condition for integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mofeing authored Nov 1, 2024
1 parent e02a639 commit 23b84cc
Showing 1 changed file with 13 additions and 16 deletions.
29 changes: 13 additions & 16 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,20 @@ using OMEinsum
include("Chain_test.jl")
end

# 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/Dagger_test.jl")
include("integration/Makie_test.jl")
include("integration/KrylovKit_test.jl")
include("integration/Quac_test.jl")
include("integration/ITensors_test.jl")
include("integration/ITensorNetworks_test.jl")
@testset "Integration tests" verbose = true begin
include("integration/ChainRules_test.jl")
# include("integration/BlockArray_test.jl")
include("integration/Dagger_test.jl")
include("integration/Makie_test.jl")
include("integration/KrylovKit_test.jl")
include("integration/Quac_test.jl")
include("integration/ITensors_test.jl")
include("integration/ITensorNetworks_test.jl")

@testset "Python" begin
include("integration/python/test_quimb.jl")
include("integration/python/test_qiskit.jl")
include("integration/python/test_qibo.jl")
end
@testset "Python" begin
include("integration/python/test_quimb.jl")
include("integration/python/test_qiskit.jl")
include("integration/python/test_qibo.jl")
end
end

Expand Down

0 comments on commit 23b84cc

Please sign in to comment.