This commit is contained in:
2025-09-07 22:09:54 +02:00
parent e1b817252c
commit 2fc0d000b6
7796 changed files with 2159515 additions and 933 deletions

View File

@ -0,0 +1,18 @@
from collections.abc import Iterable
from typing import Literal as L
__all__ = ["PytestTester"]
class PytestTester:
module_name: str
def __init__(self, module_name: str) -> None: ...
def __call__(
self,
label: L["fast", "full"] = ...,
verbose: int = ...,
extra_argv: Iterable[str] | None = ...,
doctests: L[False] = ...,
coverage: bool = ...,
durations: int = ...,
tests: Iterable[str] | None = ...,
) -> bool: ...