From 68d303d62ca40ab47767b9c30443916ca0e47983 Mon Sep 17 00:00:00 2001 From: Avik Pal Date: Thu, 5 Oct 2023 23:09:33 -0400 Subject: [PATCH] Split up the tests --- .github/workflows/CI.yml | 1 + test/runtests.jl | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e0d7a57e5..da5f5a416 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -17,6 +17,7 @@ jobs: matrix: group: - Core + - 23TestProblems version: - '1' steps: diff --git a/test/runtests.jl b/test/runtests.jl index 58ef647f0..81000c33e 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -15,7 +15,9 @@ end if GROUP == "All" || GROUP == "Core" @time @safetestset "Basic Tests + Some AD" include("basictests.jl") @time @safetestset "Sparsity Tests" include("sparse.jl") + end + if GROUP == "All" || GROUP == "23TestProblems" @time @safetestset "23 Test Problems" include("23_test_problems.jl") end