Skip to content

Commit cb486f9

Browse files
authored
Don't check for Project.toml formatting on v1.6 (#162)
1 parent 67a3f84 commit cb486f9

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
@@ -4,7 +4,10 @@ using Test
44

55
using Aqua
66
@testset "Project quality" begin
7-
Aqua.test_all(BlockBandedMatrices, ambiguities=false, piracy=false)
7+
Aqua.test_all(BlockBandedMatrices, ambiguities=false, piracy=false,
8+
# only test formatting on VERSION >= v1.7
9+
# https://github.com/JuliaTesting/Aqua.jl/issues/105#issuecomment-1551405866
10+
project_toml_formatting = VERSION >= v"1.9")
811
end
912

1013
include("test_blockbanded.jl")

0 commit comments

Comments
 (0)