You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a reason the filter keyword does not accept substitutions? I am trying to define a filter for all doctests (e.g. for comparing floating point numbers only consider up to 10 decimal values):
julia>doctest(MyPackage; doctestfilters = [(r"(\d*).(\d{1,10})\d+"=>s"\1.\2"),])
...
TypeError:in keyword argument doctestfilters, expected Vector{Regex}, got a value of type Vector{Pair{Regex, SubstitutionString{String}}}
...
passing this filter to each jldoctest individually works, but I would rather do it just once.