From 31188453c3f163164b0253242a86fb23b779847b Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Fri, 6 Oct 2023 04:08:29 +0200 Subject: [PATCH] Omit AD and allocation tests from v1.6 --- test/runtests.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index aef475dbe2..055edc4fdf 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -81,7 +81,7 @@ end @time @safetestset "Events Tests" include("integrators/ode_event_tests.jl") @time @safetestset "Alg Events Tests" include("integrators/alg_events_tests.jl") @time @safetestset "Discrete Callback Dual Tests" include("integrators/discrete_callback_dual_test.jl") - @time @safetestset "Callback Allocation Tests" include("integrators/callback_allocation_tests.jl") + @time VERSION >= v"1.9" && @safetestset "Callback Allocation Tests" include("integrators/callback_allocation_tests.jl") @time @safetestset "Iterator Tests" include("integrators/iterator_tests.jl") @time @safetestset "Integrator Interface Tests" include("integrators/integrator_interface_tests.jl") @time @safetestset "Error Check Tests" include("integrators/check_error.jl") @@ -148,7 +148,7 @@ end if !is_APPVEYOR && GROUP == "Downstream" activate_downstream_env() @time @safetestset "DelayDiffEq Tests" include("downstream/delaydiffeq.jl") - @time @safetestset "Autodiff Events Tests" include("downstream/autodiff_events.jl") + @time VERSION >= v"1.9" && @safetestset "Autodiff Events Tests" include("downstream/autodiff_events.jl") @time @safetestset "Measurements Tests" include("downstream/measurements.jl") end