"""Shared pytest fixtures. Unit-test fixtures live here. Integration-test fixtures (real Postgres, etc.) will be added in Chunk 3 once the store module lands. """ from __future__ import annotations import pytest @pytest.fixture def anyio_backend() -> str: """Force asyncio for anyio-based tests (pytest-asyncio uses this).""" return "asyncio"