We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 781a01d commit 151c24bCopy full SHA for 151c24b
Project.toml
@@ -7,7 +7,8 @@ version = "0.4.3"
7
julia = "1"
8
9
[extras]
10
+Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
11
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
12
13
[targets]
-test = ["Test"]
14
+test = ["Aqua", "Test"]
test/runtests.jl
@@ -1,9 +1,11 @@
1
using AbstractTrees, Test
2
-
+using Aqua
3
4
@testset "Builtins" begin include("builtins.jl") end
5
@testset "Custom tree types" begin include("trees.jl") end
6
if Base.VERSION >= v"1.6"
# Printing tests use `findall` variants that are not supported on Julia 1.0
@testset "Printing" begin include("printing.jl") end
end
+
+Aqua.test_all(AbstractTrees)
0 commit comments