_pytesttester.pyi 489 B

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