ktongue commited on
Commit
e8960fc
·
verified ·
1 Parent(s): a284b3c

Upload hf_env/lib/python3.14/site-packages/numpy/_pytesttester.pyi with huggingface_hub

Browse files
hf_env/lib/python3.14/site-packages/numpy/_pytesttester.pyi ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from collections.abc import Iterable
2
+ from typing import Literal as L
3
+
4
+ __all__ = ["PytestTester"]
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"] = "fast",
12
+ verbose: int = 1,
13
+ extra_argv: Iterable[str] | None = None,
14
+ doctests: L[False] = False,
15
+ coverage: bool = False,
16
+ durations: int = -1,
17
+ tests: Iterable[str] | None = None,
18
+ ) -> bool: ...