We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26834a5 commit 896d755Copy full SHA for 896d755
2 files changed
.gitignore
@@ -17,6 +17,8 @@
17
18
!test/
19
!test/*.jl
20
+!test/package/
21
+!test/package/*.jl
22
23
!docs/
24
!docs/**
test/package/aqua.jl
@@ -0,0 +1,10 @@
1
+using Aqua
2
+using MathJSON
3
+
4
+@testset "Aqua.jl Quality Tests" begin
5
+ Aqua.test_all(
6
+ MathJSON;
7
+ ambiguities = false, # Will enable once we have more methods
8
+ stale_deps = (ignore = [:JSON3],), # JSON3 used but not directly called yet
9
+ )
10
+end
0 commit comments