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
fix(exceptions): count duplicate-validator errors in ErrorTree
ErrorTree.total_errors used len(self.errors), but self.errors is a
dict keyed by validator keyword, so multiple errors at the same path
sharing a validator (e.g. several 'type' failures) were collapsed and
undercounted. Track every error in an internal list and use its
length for total_errors.
0 commit comments