We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
numpy-stubs
1 parent bcc212e commit 8aa79a6Copy full SHA for 8aa79a6
src/numpy-stubs/@test/runtime/test_runtime.py
@@ -12,10 +12,10 @@
12
"module",
13
[
14
path.stem
15
- for path in (Path(__file__).parent / "accept").iterdir()
+ for path in (Path(__file__).parent / "legacy").iterdir()
16
if path.suffix == ".py" and path.stem != "__init__"
17
],
18
- ids="test/runtime/accept/{}.py".format,
+ ids="test/runtime/legacy/{}.py".format,
19
)
20
-def test_accept(module: str) -> None:
21
- importlib.import_module(f"accept.{module}")
+def test_legacy(module: str) -> None:
+ importlib.import_module(f"legacy.{module}")
0 commit comments