From c73fc64895da1a149a6bb0c9c5883ff32e6e913a Mon Sep 17 00:00:00 2001 From: Keno Fischer Date: Mon, 18 Nov 2024 03:32:14 +0000 Subject: [PATCH] Suppress spurious error on CI extra tests Fixes #859 --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31001897..69db8142 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,6 +72,7 @@ jobs: pushfirst!(Base.active_repl_backend.ast_transforms, Revise.revise_first) include(joinpath("test", "runtests.jl")) if Base.VERSION.major == 1 && Base.VERSION.minor >= 9 + REPL.transition(Base.active_repl.mistate, :abort) REPL.eval_user_input(:(exit()), Base.active_repl_backend, Main) else REPL.eval_user_input(:(exit()), Base.active_repl_backend)