Skip to content

Commit

Permalink
test: separate out DiffEqIndexing into SII testset
Browse files Browse the repository at this point in the history
  • Loading branch information
AayushSabharwal committed Mar 8, 2024
1 parent 86e6228 commit 34d3e41
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ end
@time @safetestset "NamedArrayPartition Tests" include("named_array_partition_tests.jl")
@time @safetestset "Partitions Tests" include("partitions_test.jl")
@time @safetestset "VecOfArr Indexing Tests" include("basic_indexing.jl")
@time @safetestset "SymbolicIndexingInterface API test" include("symbolic_indexing_interface_test.jl")
@time @safetestset "VecOfArr Interface Tests" include("interface_tests.jl")
@time @safetestset "Table traits" include("tabletraits.jl")
@time @safetestset "StaticArrays Tests" include("copy_static_array_test.jl")
Expand All @@ -33,15 +32,25 @@ end
@time @safetestset "Measurement Tests" include("measurements.jl")
end

if GROUP == "SymbolicIndexingInterface" || GROUP == "All"
@time @safetestset "SymbolicIndexingInterface API test" include("symbolic_indexing_interface_test.jl")
end

if GROUP == "Downstream"
activate_downstream_env()
@time @safetestset "DiffEqArray Indexing Tests" include("downstream/symbol_indexing.jl")
@time @safetestset "ODE Solve Tests" include("downstream/odesolve.jl")
@time @safetestset "Event Tests with ArrayPartition" include("downstream/downstream_events.jl")
@time @safetestset "Measurements and Units" include("downstream/measurements_and_units.jl")
@time @safetestset "TrackerExt" include("downstream/TrackerExt.jl")
end

if GROUP == "SymbolicIndexingInterface" || GROUP == "Downstream"
if GROUP == "SymbolicIndexingInterface"
activate_downstream_env()
@time @safetestset "DiffEqArray Indexing Tests" include("downstream/symbol_indexing.jl")
end
end

if GROUP == "GPU"
activate_gpu_env()
@time @safetestset "VectorOfArray GPU" include("gpu/vectorofarray_gpu.jl")
Expand Down

0 comments on commit 34d3e41

Please sign in to comment.