Skip to content

Commit 03999b8

Browse files
authored
Don't check for Project.toml formatting on v1.6 (#301)
1 parent 6299bc5 commit 03999b8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/runtests.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ using BlockArrays, LinearAlgebra, Test
22

33
using Aqua
44
@testset "Project quality" begin
5-
Aqua.test_all(BlockArrays, ambiguities=false)
5+
Aqua.test_all(BlockArrays, ambiguities=false,
6+
# only test formatting on VERSION >= v1.7
7+
# https://github.com/JuliaTesting/Aqua.jl/issues/105#issuecomment-1551405866
8+
project_toml_formatting = VERSION >= v"1.9")
69
end
710

811
using Documenter

0 commit comments

Comments
 (0)