Files
Praxis CI fbd6602814 docs(milestone): complete v0.1 foundation
---ci---
phase: 0
milestone: v0.1
status: complete
---/ci---
2026-08-01 13:32:48 +00:00

13 lines
243 B
Python

"""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"