Skip to content

Commit 73ce14f

Browse files
Merge pull request #362 from AayushSabharwal/as/sii-testset
test: separate SII-related tests into SII testset
2 parents 86e6228 + 34d3e41 commit 73ce14f

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

test/runtests.jl

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ end
2424
@time @safetestset "NamedArrayPartition Tests" include("named_array_partition_tests.jl")
2525
@time @safetestset "Partitions Tests" include("partitions_test.jl")
2626
@time @safetestset "VecOfArr Indexing Tests" include("basic_indexing.jl")
27-
@time @safetestset "SymbolicIndexingInterface API test" include("symbolic_indexing_interface_test.jl")
2827
@time @safetestset "VecOfArr Interface Tests" include("interface_tests.jl")
2928
@time @safetestset "Table traits" include("tabletraits.jl")
3029
@time @safetestset "StaticArrays Tests" include("copy_static_array_test.jl")
@@ -33,15 +32,25 @@ end
3332
@time @safetestset "Measurement Tests" include("measurements.jl")
3433
end
3534

35+
if GROUP == "SymbolicIndexingInterface" || GROUP == "All"
36+
@time @safetestset "SymbolicIndexingInterface API test" include("symbolic_indexing_interface_test.jl")
37+
end
38+
3639
if GROUP == "Downstream"
3740
activate_downstream_env()
38-
@time @safetestset "DiffEqArray Indexing Tests" include("downstream/symbol_indexing.jl")
3941
@time @safetestset "ODE Solve Tests" include("downstream/odesolve.jl")
4042
@time @safetestset "Event Tests with ArrayPartition" include("downstream/downstream_events.jl")
4143
@time @safetestset "Measurements and Units" include("downstream/measurements_and_units.jl")
4244
@time @safetestset "TrackerExt" include("downstream/TrackerExt.jl")
4345
end
4446

47+
if GROUP == "SymbolicIndexingInterface" || GROUP == "Downstream"
48+
if GROUP == "SymbolicIndexingInterface"
49+
activate_downstream_env()
50+
@time @safetestset "DiffEqArray Indexing Tests" include("downstream/symbol_indexing.jl")
51+
end
52+
end
53+
4554
if GROUP == "GPU"
4655
activate_gpu_env()
4756
@time @safetestset "VectorOfArray GPU" include("gpu/vectorofarray_gpu.jl")

0 commit comments

Comments
 (0)