Skip to content

Commit

Permalink
Don't test for Project.toml formatting on v1.6 (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnub authored Jul 26, 2023
1 parent 9a7214e commit a718e2f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit a718e2f

Please sign in to comment.