File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ julia> # Typed varinfo cannot handle this random support model properly
70
70
# Hence, this this model requires untyped varinfo.
71
71
vi = determine_suitable_varinfo(model);
72
72
┌ Warning: Model seems incompatible with typed varinfo. Falling back to untyped varinfo.
73
- └ @ DynamicPPLJETExt /drive-2/Projects/public /DynamicPPL.jl/ext/DynamicPPLJETExt.jl:48
73
+ └ @ DynamicPPLJETExt ~/.julia/dev /DynamicPPL.jl/ext/DynamicPPLJETExt.jl:48
74
74
75
75
julia> vi isa typeof(DynamicPPL.untyped_varinfo(model))
76
76
true
Original file line number Diff line number Diff line change @@ -106,6 +106,9 @@ include("test_util.jl")
106
106
# Older versions do not have `;;]` but instead just `]` at end of the line
107
107
# => need to treat `;;]` and `]` as the same, i.e. ignore them if at the end of a line
108
108
r" (;;){0,1}\] $" m ,
109
+ # Ignore the source of a warning in the doctest output, since this is dependent on host.
110
+ # This is a line that starts with "└ @ " and ends with the line number.
111
+ r" └ @ .+:[0-9]+" ,
109
112
]
110
113
doctest (DynamicPPL; manual= false , doctestfilters= doctestfilters)
111
114
end
You can’t perform that action at this time.
0 commit comments