1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
from _typeshed import Incomplete
from collections.abc import Iterable
from typing import Any, overload
class LazyFixture:
name: str
def __init__(self, name: str) -> None: ...
def __eq__(self, other: object) -> bool: ...
@overload
def lazy_fixture(names: str) -> LazyFixture: ...
@overload
def lazy_fixture(names: Iterable[str]) -> list[LazyFixture] | Any: ...
def is_lazy_fixture(val: Any) -> bool: ...
def pytest_configure() -> None: ...
def __getattr__(name: str) -> Incomplete: ...
|