Skip to content

Commit

Permalink
Enhance smoke testing (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens authored Sep 27, 2023
1 parent 33e0e21 commit 591a27e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions test/test_smoke.jl
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
module TestSmoke

using Aqua

# test defaults
Aqua.test_all(
Aqua;
stale_deps = (; ignore = [:Compat]), # conditionally loaded
)

# test everything else
Aqua.test_all(
Aqua;
ambiguities = false,
unbound_args = false,
undefined_exports = false,
stale_deps = (; ignore = [:Compat]),
deps_compat = true,
project_toml_formatting = true,
project_extras = false,
stale_deps = false,
deps_compat = false,
project_toml_formatting = false,
piracy = false,
)

end # module

0 comments on commit 591a27e

Please sign in to comment.