Disable soft error limit by ikonst · Pull Request #21 · davidfritzsche/pytest-mypy-testing (original) (raw)
Especially with --no-silence-site-packages
newer versions of mypy can produce a number of errors that's over the soft error limit which defaults to 200. By setting it to -1, we disable it, which makes sense for something as predictable as a diff of expected vs. actual errors.
(Not sure why we have --no-silence-site-packages
in the arguments, but that's a separate question.)