Skip to content

Commit fafa4d6

Browse files
authored
Don't check for Project.toml formatting on v1.6 (#384)
1 parent 42c498f commit fafa4d6

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
@@ -5,7 +5,10 @@ using Test
55

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

1114
using Documenter

0 commit comments

Comments
 (0)