We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
;;]
1 parent bcd82a9 commit cff0941Copy full SHA for cff0941
test/runtests.jl
@@ -95,6 +95,9 @@ include("test_util.jl")
95
# Errors from macros sometimes result in `LoadError: LoadError:`
96
# rather than `LoadError:`, depending on Julia version.
97
r"ERROR: (LoadError:\s)+",
98
+ # Older versions do not have `;;]` but instead just `]` at end of the line
99
+ # => need to treat `;;]` and `]` as the same, i.e. ignore them if at the end of a line
100
+ r"(;;){0,1}\]$"m,
101
]
102
doctest(DynamicPPL; manual=false, doctestfilters=doctestfilters)
103
end
0 commit comments