pytest-dev/pytest
Expose FixtureFunctionDefinition as part of the public API
Open
#14,853 opened on Aug 11, 2026
good first issuetopic: fixtures
Repository metrics
- Stars
- (11,012 stars)
- PR merge metrics
- (Avg merge 4d 1h) (59 merged PRs in 30d)
Description
There doesn’t appear to be a public type that can be used to annotate the result of pytest.fixture.
For example, consider a factory which creates fixtures:
from _pytest.fixtures import FixtureFunctionDefinition
def make_fixture(value: str) -> FixtureFunctionDefinition:
@pytest.fixture
def fixture() -> str:
return value
return fixture