You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Aqua.jl is cementing itself as an important tool for testing the quality of a code base.
It would be cool to have an option that generates test/runtests.jl with Aqua built-in, like so:
using Aqua
using MyPackage
@testset verbose =true"MyPackage.jl"begin@testset verbose =true"Aqua.jl"begin
Aqua.test_all(MyPackage)
end# actual testsend
The text was updated successfully, but these errors were encountered:
@nickrobinson251 I tried my hand at an easier plugin with #412, but for this one I'd actually need to modify an existing file created by the test plugin instead of creating it from scratch. Any good example I should look at?
Aqua.jl is cementing itself as an important tool for testing the quality of a code base.
It would be cool to have an option that generates
test/runtests.jl
with Aqua built-in, like so:The text was updated successfully, but these errors were encountered: