Skip to content

Commit 151c24b

Browse files
committed
add Aqua for QA evals
1 parent 781a01d commit 151c24b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ version = "0.4.3"
77
julia = "1"
88

99
[extras]
10+
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
1011
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1112

1213
[targets]
13-
test = ["Test"]
14+
test = ["Aqua", "Test"]

test/runtests.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
using AbstractTrees, Test
2-
2+
using Aqua
33

44
@testset "Builtins" begin include("builtins.jl") end
55
@testset "Custom tree types" begin include("trees.jl") end
66
if Base.VERSION >= v"1.6"
77
# Printing tests use `findall` variants that are not supported on Julia 1.0
88
@testset "Printing" begin include("printing.jl") end
99
end
10+
11+
Aqua.test_all(AbstractTrees)

0 commit comments

Comments
 (0)