From 6ae324763616cb062afb135c83105950564d8129 Mon Sep 17 00:00:00 2001 From: jorenham Date: Mon, 29 Dec 2025 14:28:39 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=BD=EF=B8=8F=20`=5Fpytesttester`=20syn?= =?UTF-8?q?c=20with=20upstream?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/numpy-stubs/_pytesttester.pyi | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/numpy-stubs/_pytesttester.pyi b/src/numpy-stubs/_pytesttester.pyi index a12abb1c..bd712393 100644 --- a/src/numpy-stubs/_pytesttester.pyi +++ b/src/numpy-stubs/_pytesttester.pyi @@ -8,11 +8,11 @@ class PytestTester: 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 = ..., + label: L["fast", "full"] = "fast", + verbose: int = 1, + extra_argv: Iterable[str] | None = None, + doctests: L[False] = False, + coverage: bool = False, + durations: int = -1, + tests: Iterable[str] | None = None, ) -> bool: ...