Skip to content

Commit

Permalink
Skip unbound arg test on Julia 1.0 (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkitti authored Apr 21, 2023
1 parent 8423b71 commit 9b8f5ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ using TranscodingStreams
using Test
using Pkg

@test isempty(detect_unbound_args(TranscodingStreams; recursive=true))
if VERSION v"1.1"
@test isempty(detect_unbound_args(TranscodingStreams; recursive=true))
end
@test isempty(detect_ambiguities(TranscodingStreams; recursive=true))

# Tool tests
Expand Down

0 comments on commit 9b8f5ab

Please sign in to comment.