/ lib / numpy / _pytesttester.pyi
_pytesttester.pyi
 1  from collections.abc import Iterable
 2  from typing import Literal as L
 3  
 4  __all__: list[str]
 5  
 6  class PytestTester:
 7      module_name: str
 8      def __init__(self, module_name: str) -> None: ...
 9      def __call__(
10          self,
11          label: L["fast", "full"] = ...,
12          verbose: int = ...,
13          extra_argv: None | Iterable[str] = ...,
14          doctests: L[False] = ...,
15          coverage: bool = ...,
16          durations: int = ...,
17          tests: None | Iterable[str] = ...,
18      ) -> bool: ...