Skip to content

Commit 042b9a0

Browse files
kunzaatkojishnub
andauthored
Aqua.jl (#304)
* edit(Agua): Update issue link and mark as broken Run ambiguities but mark as broken. Update the reference for format issue pre-1.7 * docs(README): Add `Agua.jl` badge * fix(test): shrink compat for Aqua.jl to 0.7 --------- Co-authored-by: Jishnu Bhattacharya <[email protected]>
1 parent 21bd031 commit 042b9a0

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

Project.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,14 @@ FillArraysSparseArraysExt = "SparseArrays"
1717
FillArraysStatisticsExt = "Statistics"
1818

1919
[compat]
20-
Aqua = "0.5, 0.6, 0.7"
20+
Aqua = "0.7"
21+
Base64 = "1.6"
2122
LinearAlgebra = "1.6"
2223
Random = "1.6"
24+
ReverseDiff = "1"
2325
SparseArrays = "1.6"
2426
Statistics = "1.6"
27+
Test = "1.6"
2528
julia = "1.6"
2629

2730
[extras]

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
[![deps](https://juliahub.com/docs/FillArrays/deps.svg)](https://juliahub.com/ui/Packages/FillArrays/2Dg1l?t=2)
88
[![version](https://juliahub.com/docs/FillArrays/version.svg)](https://juliahub.com/ui/Packages/FillArrays/2Dg1l)
99
[![pkgeval](https://juliahub.com/docs/FillArrays/pkgeval.svg)](https://juliahub.com/ui/Packages/FillArrays/2Dg1l)
10+
[![Aqua](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)
1011

1112
Julia package to lazily represent matrices filled with a single entry,
1213
as well as identity matrices. This package exports the following types:

test/runtests.jl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ 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;
7+
# https://github.com/JuliaArrays/FillArrays.jl/issues/105#issuecomment-1582516319
8+
ambiguities=(; broken=true),
79
# 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+
# https://github.com/JuliaTesting/Aqua.jl/issues/208
11+
project_toml_formatting=VERSION >= v"1.7"
1012
)
1113
end
1214

0 commit comments

Comments
 (0)