Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions test/Aqua.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module AquaTests

using Aqua: Aqua
using AbstractPPL

# For now, we skip ambiguities since they come from interactions
# with third-party packages rather than issues in AbstractPPL itself
Aqua.test_all(AbstractPPL; ambiguities=false)

end
2 changes: 2 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[deps]
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
InvertedIndices = "41ab1584-1d38-5bbf-9106-f11c6c58b48f"
Expand All @@ -10,6 +11,7 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
Accessors = "0.1"
Aqua = "0.8"
Distributions = "0.25"
Documenter = "0.26.3, 0.27, 1"
InvertedIndices = "1"
Expand Down
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const GROUP = get(ENV, "GROUP", "All")

@testset "AbstractPPL.jl" begin
if GROUP == "All" || GROUP == "Tests"
include("Aqua.jl")
include("varname.jl")
include("abstractprobprog.jl")
include("hasvalue.jl")
Expand Down
Loading