From 9866bda9a6b22fab49b950cb6dd39d85504ad30d Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 29 Oct 2023 10:46:02 -0400 Subject: [PATCH] Disable HYPRE MPI tests on non-Linux OS --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index bbf1cd0d8..b9c4a4941 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -32,6 +32,6 @@ if GROUP == "LinearSolvePardiso" @time @safetestset "Pardiso" include("pardiso/pardiso.jl") end -if (GROUP == "All" || GROUP == "LinearSolveHYPRE") && HAS_EXTENSIONS +if Base.Sys.islinux() && (GROUP == "All" || GROUP == "LinearSolveHYPRE") && HAS_EXTENSIONS @time @safetestset "LinearSolveHYPRE" include("hypretests.jl") end