From ebd6e6a6a5a0b69bea5b4ef06fa15282817466c7 Mon Sep 17 00:00:00 2001 From: Simone Silvestri Date: Thu, 30 Apr 2026 10:30:50 +0200 Subject: [PATCH 1/2] reduce tests --- test/runtests.jl | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 08a4ce9b9..ecdbde0d6 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -29,11 +29,17 @@ if filter_tests!(testsuite, args) delete!(testsuite, "test_distributed_utils") delete!(testsuite, "test_reactant") - # Remove CPU-only tests when - # testing on GPUs if gpu_test + # Remove CPU-only tests when testing on GPUs delete!(testsuite, "test_veros") delete!(testsuite, "test_speedy_coupling") + else + # Remove the slowest tests from CPU CI to keep total runtime + # manageable; GPU CI still runs them. See issue #193. + delete!(testsuite, "test_ocean_only_model") + delete!(testsuite, "test_ocean_sea_ice_model") + delete!(testsuite, "test_diagnostics_1") + delete!(testsuite, "test_ecco2_daily") end end From 343d37eefbf2773fd3b164d339ba452401f170de Mon Sep 17 00:00:00 2001 From: Simone Silvestri Date: Thu, 30 Apr 2026 17:59:52 +0200 Subject: [PATCH 2/2] delete also orca grid --- test/runtests.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/test/runtests.jl b/test/runtests.jl index ecdbde0d6..ef9d1bc50 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -40,6 +40,7 @@ if filter_tests!(testsuite, args) delete!(testsuite, "test_ocean_sea_ice_model") delete!(testsuite, "test_diagnostics_1") delete!(testsuite, "test_ecco2_daily") + delete!(testsuite, "test_orca_grid") end end