"""Shared pytest fixtures.""" from __future__ import annotations from pathlib import Path import pytest @pytest.fixture def tmp_db(tmp_path: Path) -> Path: """A temporary SQLite database path.""" return tmp_path / "test_praxis.db"