From 2993aa66a15e5775e445e69a5c07a09d48fe8525 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Tue, 10 Oct 2023 11:20:27 +0200 Subject: [PATCH] Only test alternative build targets on v1.9 It's version dependent. --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 86cd4ac24..e73d5ffca 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -37,7 +37,7 @@ if GROUP == "All" || GROUP == "Core" @safetestset "Build Function Test" begin include("build_function.jl") end @safetestset "Build Function Array Test" begin include("build_function_arrayofarray.jl") end @safetestset "Build Function Array Test Named Tuples" begin include("build_function_arrayofarray_named_tuples.jl") end - @safetestset "Build Targets Test" begin include("build_targets.jl") end + VERSION >= v"1.9" && @safetestset "Build Targets Test" begin include("build_targets.jl") end @safetestset "Latexify Test" begin include("latexify.jl") end @safetestset "Domain Test" begin include("domains.jl") end @safetestset "SymPy Test" begin include("sympy.jl") end