From ecf33318082d9106e7864c4683e57464bdf4a11d Mon Sep 17 00:00:00 2001 From: Jishnu Bhattacharya Date: Wed, 26 Jul 2023 22:34:34 +0530 Subject: [PATCH] Don't test for Project.toml formatting on v1.6 --- test/runtests.jl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 380ec261..fb48e380 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -3,7 +3,11 @@ import FillArrays: AbstractFill, RectDiagonal, SquareEye using Aqua @testset "Project quality" begin - Aqua.test_all(FillArrays, ambiguities=false) + Aqua.test_all(FillArrays, ambiguities=false, + # only test formatting on VERSION >= v1.7 + # https://github.com/JuliaTesting/Aqua.jl/issues/105#issuecomment-1551405866 + project_toml_formatting = VERSION >= v"1.7", + ) end include("infinitearrays.jl")