update CI.yml #493
Annotations
3 errors
Documentation:
docs/src/index.md#L51
doctest failure in src/index.md:51-62
```jldoctest demo1; filter = [r"in Base at .*$", r"[^\d]\d\d\d[^\d]", r"(c 1|d 1)"]
julia> @InterPret sum([1,2,3]) # no element bigger than 4, breakpoint should not trigger
6
julia> frame, bpref = @InterPret sum([1,2,5]) # should trigger breakpoint
(Frame for sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:994
c 1* 994 1 ─ nothing
2 994 │ %2 = $(QuoteNode(Colon()))
3 994 │ %3 = ($(QuoteNode(NamedTuple)))()
⋮
a = [1, 2, 5], breakpoint(sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:994, line 994))
```
Subexpression:
frame, bpref = @InterPret sum([1,2,5]) # should trigger breakpoint
Evaluated output:
(Frame for sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:1010
c 1* 1010 1 ─ nothing
2 1010 │ %2 = $(QuoteNode(Colon()))
3 1010 │ %3 = ($(QuoteNode(NamedTuple)))()
⋮
a = [1, 2, 5], breakpoint(sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:1010, line 1010))
Expected output:
(Frame for sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:994
c 1* 994 1 ─ nothing
2 994 │ %2 = $(QuoteNode(Colon()))
3 994 │ %3 = ($(QuoteNode(NamedTuple)))()
⋮
a = [1, 2, 5], breakpoint(sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:994, line 994))
diff =
Warning: Diff output requires color.
(Frame for sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:994
reducedim.jl:1010
c 1* 994 1010 1 ─ nothing
2 994 1010 │ %2 = $(QuoteNode(Colon()))
3 994 1010 │ %3 = ($(QuoteNode(NamedTuple)))()
⋮
a = [1, 2, 5], breakpoint(sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:994, reducedim.jl:1010, line 994))1010))
|
Documentation:
docs/src/index.md#L69
doctest failure in src/index.md:69-84
```jldoctest demo1; filter = [r"in Base at .*$", r"[^\d]\d\d\d[^\d]", r"(c 1|d 1)"]
julia> disable(bp)
julia> @InterPret sum([1,2,5])
8
julia> enable(bp)
julia> @InterPret sum([1,2,5])
(Frame for sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:994
c 1* 994 1 ─ nothing
2 994 │ %2 = $(QuoteNode(Colon()))
3 994 │ %3 = ($(QuoteNode(NamedTuple)))()
⋮
a = [1, 2, 5], breakpoint(sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:994, line 994))
```
Subexpression:
@InterPret sum([1,2,5])
Evaluated output:
(Frame for sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:1010
c 1* 1010 1 ─ nothing
2 1010 │ %2 = $(QuoteNode(Colon()))
3 1010 │ %3 = ($(QuoteNode(NamedTuple)))()
⋮
a = [1, 2, 5], breakpoint(sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:1010, line 1010))
Expected output:
(Frame for sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:994
c 1* 994 1 ─ nothing
2 994 │ %2 = $(QuoteNode(Colon()))
3 994 │ %3 = ($(QuoteNode(NamedTuple)))()
⋮
a = [1, 2, 5], breakpoint(sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:994, line 994))
diff =
Warning: Diff output requires color.
(Frame for sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:994
reducedim.jl:1010
c 1* 994 1010 1 ─ nothing
2 994 1010 │ %2 = $(QuoteNode(Colon()))
3 994 1010 │ %3 = ($(QuoteNode(NamedTuple)))()
⋮
a = [1, 2, 5], breakpoint(sum(a::AbstractArray; dims, kw...) @ Base reducedim.jl:994, reducedim.jl:1010, line 994))1010))
|
Documentation
Process completed with exit code 1.
|