Skip to content

Commit d2edc88

Browse files
authored
Merge pull request #231 from JuliaInterop/aqua
Add Aqua.jl to the tests and add compat bounds
2 parents 15915aa + b73d5a9 commit d2edc88

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Project.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,17 @@ Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
99
ZeroMQ_jll = "8f1865be-045e-5c20-9c9f-bfbfb0764568"
1010

1111
[compat]
12+
Aqua = "0.8.7"
13+
FileWatching = "<0.0.1, 1"
1214
PrecompileTools = "1"
15+
Sockets = "<0.0.1, 1"
16+
Test = "<0.0.1, 1"
1317
ZeroMQ_jll = "4"
1418
julia = "1.3"
1519

1620
[extras]
21+
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
1722
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1823

1924
[targets]
20-
test = ["Test"]
25+
test = ["Aqua", "Test"]

test/runtests.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import Aqua
12
using ZMQ, Test
23

34
@info("Testing with ZMQ version $(ZMQ.version)")
@@ -146,3 +147,7 @@ end
146147
end
147148
@test !isopen(leaked_ctx)
148149
end
150+
151+
@testset "Aqua.jl" begin
152+
Aqua.test_all(ZMQ)
153+
end

0 commit comments

Comments
 (0)