From 6819473ac16bbebdbfacaa503780fb4f236abf7d Mon Sep 17 00:00:00 2001 From: Alex Knudson Date: Sun, 13 Sep 2026 10:54:25 -0700 Subject: [PATCH] Add CI check to skip real-world data tests --- .github/workflows/CI.yml | 2 ++ test/runtests.jl | 7 ++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8adee80..ab18fdf 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -26,3 +26,5 @@ jobs: - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 + env: + GROUP: 'Fast' diff --git a/test/runtests.jl b/test/runtests.jl index b38aa9b..f0dfdbc 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,5 +1,7 @@ using SafeTestsets +const GROUP = get(ENV, "GROUP", "Local") + include("datadeps_registration.jl") # Package Quality @@ -16,7 +18,10 @@ include("datadeps_registration.jl") @safetestset "Constructors" include("test_constructors.jl") @safetestset "Convergence" include("test_convergence.jl") @safetestset "Fixed Element Masking" include("test_masking.jl") -@safetestset "Real World Data" include("test_real_world.jl") + +if GROUP in ("All", "Local") + @safetestset "Real World Data" include("test_real_world.jl") +end # Extension Packages @safetestset "JuMP Extension" include("test_jump.jl")