From ee7c050ee8794cbde0f49cd60abf8a864ca49889 Mon Sep 17 00:00:00 2001 From: Vedant Puri Date: Fri, 5 May 2023 09:55:59 -0400 Subject: [PATCH 1/3] Update runtests.jl move SciMLOps related test to different group. --- test/runtests.jl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index 09db608c..b60306d2 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -25,6 +25,11 @@ if GROUP == "All" @time @safetestset "AD using colorvec vector" begin include("test_ad.jl") end end +if GROUP == "InterfaceI" || GROUP == "All" + @time @safetestset "Jac Vecs and Hes Vecs" begin include("test_jaches_products.jl") end + @time @safetestset "Vec Jac Products" begin include("test_vecjac_products.jl") end +end + if GROUP == "GPU" activate_gpu_env() @time @safetestset "GPU AD" begin include("test_gpu_ad.jl") end From 1240474096b7b01ed01a9aeb330010c7785b742e Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 15 May 2023 09:33:40 -0400 Subject: [PATCH 2/3] Update CI.yml --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f080118f..ba6eeb9b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -13,7 +13,8 @@ jobs: fail-fast: false matrix: group: - - All + - Core + - InterfaceI version: - '1' # Latest Release - '~1.6' # Current LTS From 3423a06e3a2ed5587fded822fc8540259ccfc140 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 15 May 2023 09:34:08 -0400 Subject: [PATCH 3/3] Update runtests.jl --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index b60306d2..16542cad 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -11,7 +11,7 @@ function activate_gpu_env() Pkg.instantiate() end -if GROUP == "All" +if GROUP == "Core" || GROUP == "All" @time @safetestset "Exact coloring via contraction" begin include("test_contraction.jl") end @time @safetestset "Greedy distance-1 coloring" begin include("test_greedy_d1.jl") end @time @safetestset "Greedy star coloring" begin include("test_greedy_star.jl") end