We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d94884f commit af8d307Copy full SHA for af8d307
test/aqua.jl
@@ -3,5 +3,15 @@ using LinearFold
3
4
@testset "Aqua.test_all" begin
5
showtestset()
6
- Aqua.test_all(LinearFold)
+ if VERSION.major == 1 && VERSION.minor in (11, 12)
7
+ # Ambiguity #1
8
+ # write(io::IO, s::Union{SubString{<:StringViews.StringView},
9
+ # StringViews.StringView}) @ StringViews
10
+ # ~/.julia/packages/StringViews/gFPyP/src/StringViews.jl:104
11
+ # write(io::Base.AnnotatedIOBuffer, x::AbstractString) @ Base strings/annotated.jl:443
12
+ @warn "disabling failing Aqua method ambiguity test for julia-1.11.x, julia-1.12.x"
13
+ Aqua.test_all(LinearFold; ambiguities=false)
14
+ else
15
+ Aqua.test_all(LinearFold)
16
+ end
17
end
0 commit comments