Skip to content

Update Documenter setup #12

Update Documenter setup

Update Documenter setup #12

Triggered via push November 13, 2024 18:51
Status Failure
Total duration 2m 53s
Artifacts

ci.yml

on: push
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

10 errors, 1 warning, and 1 notice
Documentation: src/FrankenTuples.jl#L179
doctest failure in ~/work/FrankenTuples.jl/FrankenTuples.jl/src/FrankenTuples.jl:179-189 ```jldoctest julia> ft = @ftuple (1, a=3, 2, b=4) FrankenTuple((1, 2), (a = 3, b = 4)) julia> collect(ft) 4-element Vector{Int64}: 1 2 3 4 ``` Subexpression: ft = @ftuple (1, a=3, 2, b=4) Evaluated output: ERROR: LoadError: UndefVarError: `@ftuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. in expression starting at none:1 Expected output: FrankenTuple((1, 2), (a = 3, b = 4)) diff = Warning: Diff output requires color. FrankenTuple((1, 2), (a = 3, b = 4))ERROR: LoadError: UndefVarError: `@ftuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. in expression starting at none:1
Documentation: src/FrankenTuples.jl#L179
doctest failure in ~/work/FrankenTuples.jl/FrankenTuples.jl/src/FrankenTuples.jl:179-189 ```jldoctest julia> ft = @ftuple (1, a=3, 2, b=4) FrankenTuple((1, 2), (a = 3, b = 4)) julia> collect(ft) 4-element Vector{Int64}: 1 2 3 4 ``` Subexpression: collect(ft) Evaluated output: ERROR: UndefVarError: `ft` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1 Expected output: 4-element Vector{Int64}: 1 2 3 4 diff = Warning: Diff output requires color. 4-element Vector{Int64}: 1 2 3 4ERROR: UndefVarError: `ft` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1
Documentation: src/FrankenTuples.jl#L337
doctest failure in ~/work/FrankenTuples.jl/FrankenTuples.jl/src/FrankenTuples.jl:337-350 ```jldoctest julia> f(x::Int; y=3, z=4) = x + y + z; julia> hasmethod(f, FrankenTuple{Tuple{Int},(:y,)}) true julia> hasmethod(f, FrankenTuple{Tuple{Int},(:a,)}) # no keyword `a` false julia> g(; a, b, kwargs...) = +(a, b, kwargs...); julia> hasmethod(g, FrankenTuple{Tuple{},(:a,:b,:c,:d)}) # g accepts arbitrarily many kwargs true ``` Subexpression: hasmethod(f, FrankenTuple{Tuple{Int},(:y,)}) Evaluated output: ERROR: UndefVarError: `FrankenTuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. Stacktrace: [1] top-level scope @ none:1 Expected output: true diff = Warning: Diff output requires color. trueERROR: UndefVarError: `FrankenTuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. Stacktrace: [1] top-level scope @ none:1
Documentation: src/FrankenTuples.jl#L337
doctest failure in ~/work/FrankenTuples.jl/FrankenTuples.jl/src/FrankenTuples.jl:337-350 ```jldoctest julia> f(x::Int; y=3, z=4) = x + y + z; julia> hasmethod(f, FrankenTuple{Tuple{Int},(:y,)}) true julia> hasmethod(f, FrankenTuple{Tuple{Int},(:a,)}) # no keyword `a` false julia> g(; a, b, kwargs...) = +(a, b, kwargs...); julia> hasmethod(g, FrankenTuple{Tuple{},(:a,:b,:c,:d)}) # g accepts arbitrarily many kwargs true ``` Subexpression: hasmethod(f, FrankenTuple{Tuple{Int},(:a,)}) # no keyword `a` Evaluated output: ERROR: UndefVarError: `FrankenTuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. Stacktrace: [1] top-level scope @ none:1 Expected output: false diff = Warning: Diff output requires color. falseERROR: UndefVarError: `FrankenTuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. Stacktrace: [1] top-level scope @ none:1
Documentation: src/FrankenTuples.jl#L337
doctest failure in ~/work/FrankenTuples.jl/FrankenTuples.jl/src/FrankenTuples.jl:337-350 ```jldoctest julia> f(x::Int; y=3, z=4) = x + y + z; julia> hasmethod(f, FrankenTuple{Tuple{Int},(:y,)}) true julia> hasmethod(f, FrankenTuple{Tuple{Int},(:a,)}) # no keyword `a` false julia> g(; a, b, kwargs...) = +(a, b, kwargs...); julia> hasmethod(g, FrankenTuple{Tuple{},(:a,:b,:c,:d)}) # g accepts arbitrarily many kwargs true ``` Subexpression: hasmethod(g, FrankenTuple{Tuple{},(:a,:b,:c,:d)}) # g accepts arbitrarily many kwargs Evaluated output: ERROR: UndefVarError: `FrankenTuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. Stacktrace: [1] top-level scope @ none:1 Expected output: true diff = Warning: Diff output requires color. trueERROR: UndefVarError: `FrankenTuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. Stacktrace: [1] top-level scope @ none:1
Documentation: src/FrankenTuples.jl#L389
doctest failure in ~/work/FrankenTuples.jl/FrankenTuples.jl/src/FrankenTuples.jl:389-395 ```jldoctest julia> @ftuple (1, 2; a=3, b=4) FrankenTuple((1, 2), (a = 3, b = 4)) julia> @ftuple (1, a=3, 2, b=4) FrankenTuple((1, 2), (a = 3, b = 4)) ``` Subexpression: @ftuple (1, 2; a=3, b=4) Evaluated output: ERROR: LoadError: UndefVarError: `@ftuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. in expression starting at none:1 Expected output: FrankenTuple((1, 2), (a = 3, b = 4)) diff = Warning: Diff output requires color. FrankenTuple((1, 2), (a = 3, b = 4))ERROR: LoadError: UndefVarError: `@ftuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. in expression starting at none:1
Documentation: src/FrankenTuples.jl#L389
doctest failure in ~/work/FrankenTuples.jl/FrankenTuples.jl/src/FrankenTuples.jl:389-395 ```jldoctest julia> @ftuple (1, 2; a=3, b=4) FrankenTuple((1, 2), (a = 3, b = 4)) julia> @ftuple (1, a=3, 2, b=4) FrankenTuple((1, 2), (a = 3, b = 4)) ``` Subexpression: @ftuple (1, a=3, 2, b=4) Evaluated output: ERROR: LoadError: UndefVarError: `@ftuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. in expression starting at none:1 Expected output: FrankenTuple((1, 2), (a = 3, b = 4)) diff = Warning: Diff output requires color. FrankenTuple((1, 2), (a = 3, b = 4))ERROR: LoadError: UndefVarError: `@ftuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. in expression starting at none:1
Documentation: src/FrankenTuples.jl#L16
doctest failure in ~/work/FrankenTuples.jl/FrankenTuples.jl/src/FrankenTuples.jl:16-25 ```jldoctest julia> ft = FrankenTuple((1, 2), (a=1, b=2)) FrankenTuple((1, 2), (a = 1, b = 2)) julia> Tuple(ft) (1, 2) julia> NamedTuple(ft) (a = 1, b = 2) ``` Subexpression: ft = FrankenTuple((1, 2), (a=1, b=2)) Evaluated output: ERROR: UndefVarError: `FrankenTuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. Stacktrace: [1] top-level scope @ none:1 Expected output: FrankenTuple((1, 2), (a = 1, b = 2)) diff = Warning: Diff output requires color. FrankenTuple((1, 2), (a = 1, b = 2))ERROR: UndefVarError: `FrankenTuple` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in FrankenTuples. Stacktrace: [1] top-level scope @ none:1
Documentation: src/FrankenTuples.jl#L16
doctest failure in ~/work/FrankenTuples.jl/FrankenTuples.jl/src/FrankenTuples.jl:16-25 ```jldoctest julia> ft = FrankenTuple((1, 2), (a=1, b=2)) FrankenTuple((1, 2), (a = 1, b = 2)) julia> Tuple(ft) (1, 2) julia> NamedTuple(ft) (a = 1, b = 2) ``` Subexpression: Tuple(ft) Evaluated output: ERROR: UndefVarError: `ft` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1 Expected output: (1, 2) diff = Warning: Diff output requires color. (1, 2)ERROR: UndefVarError: `ft` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1
Documentation: src/FrankenTuples.jl#L16
doctest failure in ~/work/FrankenTuples.jl/FrankenTuples.jl/src/FrankenTuples.jl:16-25 ```jldoctest julia> ft = FrankenTuple((1, 2), (a=1, b=2)) FrankenTuple((1, 2), (a = 1, b = 2)) julia> Tuple(ft) (1, 2) julia> NamedTuple(ft) (a = 1, b = 2) ``` Subexpression: NamedTuple(ft) Evaluated output: ERROR: UndefVarError: `ft` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1 Expected output: (a = 1, b = 2) diff = Warning: Diff output requires color. (a = 1, b = 2)ERROR: UndefVarError: `ft` not defined in `Main` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] top-level scope @ none:1
Julia 1.0 - push
The Pkg.test bounds checking behavior cannot be changed before Julia 1.6. VERSION=1.0.5, julia_args=["--check-bounds=yes", "--compiled-modules=yes"]
[julia-buildpkg] Caching of the julia depot was not detected
Consider using `julia-actions/cache` to speed up runs https://github.com/julia-actions/cache. To ignore, set input `ignore-no-cache: true`