MCPcopy
hub / github.com/pytest-dev/pytest / __init__

Method __init__

src/_pytest/doctest.py:188–196  ·  view source on GitHub ↗
(
            self,
            checker: doctest.OutputChecker | None = None,
            verbose: bool | None = None,
            optionflags: int = 0,
            continue_on_failure: bool = True,
        )

Source from the content-addressed store, hash-verified

186 """
187
188 def __init__(
189 self,
190 checker: doctest.OutputChecker | None = None,
191 verbose: bool | None = None,
192 optionflags: int = 0,
193 continue_on_failure: bool = True,
194 ) -> None:
195 super().__init__(checker=checker, verbose=verbose, optionflags=optionflags)
196 self.continue_on_failure = continue_on_failure
197
198 def report_failure(
199 self,

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected