Skip to content

Commit 065ed7e

Browse files
authored
Test using Aqua v0.8 (JuliaLinearAlgebra#121)
* Test using Aqua v0.8 * Remove Pkg from tests
1 parent b6e7590 commit 065ed7e

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

Project.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,22 @@ ToeplitzMatricesStatsBaseExt = "StatsBase"
1717

1818
[compat]
1919
AbstractFFTs = "0.4, 0.5, 1"
20-
Aqua = "0.7"
20+
Aqua = "0.8"
2121
DSP = "0.7.7"
2222
FFTW = "1"
2323
FillArrays = "0.12, 0.13, 1"
2424
LinearAlgebra = "<0.0.1, 1"
25+
Random = "<0.0.1, 1"
2526
StatsBase = "0.32, 0.33, 0.34"
27+
Test = "<0.0.1, 1"
2628
julia = "1.0"
2729

2830
[extras]
2931
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
3032
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
31-
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
3233
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
3334
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
3435
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3536

3637
[targets]
37-
test = ["Aqua", "FFTW", "Pkg", "Random", "StatsBase", "Test"]
38+
test = ["Aqua", "FFTW", "Random", "StatsBase", "Test"]

test/runtests.jl

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using Pkg
2-
31
using ToeplitzMatrices, Test, LinearAlgebra, Aqua, FillArrays, Random
42
import StatsBase
53
using FillArrays
@@ -8,10 +6,7 @@ using FFTW: fft
86
@testset "code quality" begin
97
Aqua.test_ambiguities(ToeplitzMatrices, recursive=false)
108
# Aqua.test_all includes Base and Core in ambiguity testing
11-
Aqua.test_all(ToeplitzMatrices, ambiguities=false, piracy=false,
12-
# only test formatting on VERSION >= v1.7
13-
# https://github.com/JuliaTesting/Aqua.jl/issues/105#issuecomment-1551405866
14-
project_toml_formatting = VERSION >= v"1.7")
9+
Aqua.test_all(ToeplitzMatrices, ambiguities=false, piracies=(; broken=true))
1510
end
1611

1712
ns = 101

0 commit comments

Comments
 (0)