Method: pylint.testutils._run._Run.__init__
Calls: 179, Exceptions: 152, Paths: 1Back
Path 1: 179 calls (1.0)
['--rcfile=/Users/andrehora/Documents/git/projects-pathspotter/pylint/pylint/testutils/testing_pylintrc', '/Users/andrehora/Documents/git/projects-pat...
None (166) TextReporter (6) JSONReporter (3) GenericTestReporter (3) MultiReporter (1)
True (145) False (34)
object (179)
SystemExit (150) RuntimeError (2)
1def __init__(
2 self,
3 args: Sequence[str],
4 reporter: BaseReporter | None = None,
5 exit: bool = True, # pylint: disable=redefined-builtin
6 do_exit: Any = UNUSED_PARAM_SENTINEL,
7 ) -> None:
8 args = _add_rcfile_default_pylintrc(list(args))
9 super().__init__(args, reporter, exit, do_exit)