Skip to content

Commit ea4ee00

Browse files
IanButterworthJamesWrigley
authored andcommitted
add Aqua tests
1 parent 23dd9a9 commit ea4ee00

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

Project.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,22 @@ Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
88
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
99

1010
[compat]
11+
Aqua = "0.8"
1112
Distributed = "1"
13+
LibSSH = "0.7"
14+
LinearAlgebra = "1"
1215
Random = "1"
1316
Serialization = "1"
1417
Sockets = "1"
18+
Test = "1"
1519
julia = "1.9"
1620

1721
[extras]
22+
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
1823
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
1924
LibSSH = "00483490-30f8-4353-8aba-35b82f51f4d0"
2025
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
2126
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2227

2328
[targets]
24-
test = ["LinearAlgebra", "Test", "LibSSH", "Distributed"]
29+
test = ["Aqua", "Distributed", "LibSSH", "LinearAlgebra", "Test"]

test/runtests.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
using Test
4+
import DistributedNext
5+
import Aqua
46

57
# Run the distributed test outside of the main driver since it needs its own
68
# set of dedicated workers.
@@ -22,3 +24,7 @@ include("distributed_exec.jl")
2224
include("managers.jl")
2325

2426
include("distributed_stdlib_detection.jl")
27+
28+
@testset "Aqua" begin
29+
Aqua.test_all(DistributedNext)
30+
end

0 commit comments

Comments
 (0)