Skip to content

Commit

Permalink
Merge pull request #231 from JuliaInterop/aqua
Browse files Browse the repository at this point in the history
Add Aqua.jl to the tests and add compat bounds
  • Loading branch information
JamesWrigley authored May 20, 2024
2 parents 15915aa + b73d5a9 commit d2edc88
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,17 @@ Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
ZeroMQ_jll = "8f1865be-045e-5c20-9c9f-bfbfb0764568"

[compat]
Aqua = "0.8.7"
FileWatching = "<0.0.1, 1"
PrecompileTools = "1"
Sockets = "<0.0.1, 1"
Test = "<0.0.1, 1"
ZeroMQ_jll = "4"
julia = "1.3"

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

[targets]
test = ["Test"]
test = ["Aqua", "Test"]
5 changes: 5 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Aqua
using ZMQ, Test

@info("Testing with ZMQ version $(ZMQ.version)")
Expand Down Expand Up @@ -146,3 +147,7 @@ end
end
@test !isopen(leaked_ctx)
end

@testset "Aqua.jl" begin
Aqua.test_all(ZMQ)
end

0 comments on commit d2edc88

Please sign in to comment.