From 5ae1dbe0bc6872c030ae4e0c15f1557f6eedc484 Mon Sep 17 00:00:00 2001 From: chriselrod Date: Thu, 20 Jul 2023 20:38:09 -0400 Subject: [PATCH] only use Aqua on >= 1.9 --- test/grouptests.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/grouptests.jl b/test/grouptests.jl index 8a2283a3..1ab520b6 100644 --- a/test/grouptests.jl +++ b/test/grouptests.jl @@ -13,9 +13,10 @@ const START_TIME = time() end @time if LOOPVECTORIZATION_TEST == "all" || LOOPVECTORIZATION_TEST == "part2" + if VERSION >= v"1.9" using Aqua @time Aqua.test_all(LoopVectorization, ambiguities = false, piracy = false) - + end @test isempty(detect_unbound_args(LoopVectorization)) @time include("printmethods.jl")