From a7c18c51f5000c87f20d754753d21f6eae326c0e Mon Sep 17 00:00:00 2001 From: Torkel Date: Mon, 25 Sep 2023 21:01:39 -0400 Subject: [PATCH] Only test extensions when VERSION >= v"1.9" --- test/runtests.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index cc7a1135c1..7d659feb5c 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -48,5 +48,7 @@ using SafeTestsets end ### Tests extensions. ### - @time @safetestset "Homotopy Continuation Extension" begin include("extensions/homotopy_continuation.jl") end + if VERSION >= v"1.9" + @time @safetestset "Homotopy Continuation Extension" begin include("extensions/homotopy_continuation.jl") end + end end # @time