Skip to content

Commit 896d755

Browse files
committed
fix: add missing aqua.jl test file
1 parent 26834a5 commit 896d755

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
!test/
1919
!test/*.jl
20+
!test/package/
21+
!test/package/*.jl
2022

2123
!docs/
2224
!docs/**

test/package/aqua.jl

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)