Skip to content

Commit a718e2f

Browse files
authored
Don't test for Project.toml formatting on v1.6 (#287)
1 parent 9a7214e commit a718e2f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/runtests.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ import FillArrays: AbstractFill, RectDiagonal, SquareEye
33

44
using Aqua
55
@testset "Project quality" begin
6-
Aqua.test_all(FillArrays, ambiguities=false)
6+
Aqua.test_all(FillArrays, ambiguities=false,
7+
# only test formatting on VERSION >= v1.7
8+
# https://github.com/JuliaTesting/Aqua.jl/issues/105#issuecomment-1551405866
9+
project_toml_formatting = VERSION >= v"1.7",
10+
)
711
end
812

913
include("infinitearrays.jl")

0 commit comments

Comments
 (0)