docs(P01): complete minimal-voice-loop phase

---ci---
phase: 1
milestone: v0.1
status: complete
requirements:
  covered: [REQ-VOICE-01, REQ-VOICE-02, REQ-VOICE-03, REQ-VOICE-04, REQ-SCEN-01, REQ-STATE-01, REQ-LLM-01, REQ-LLM-02, REQ-DEBRIEF-01, REQ-ORCH-01, REQ-ORCH-02, REQ-SCEN-FMT-01, REQ-NFR-LAT-01, REQ-NFR-SAFE-01, REQ-NFR-COST-01]
  partial: []
---/ci---
This commit is contained in:
Praxis CI
2026-08-01 13:28:42 +00:00
parent 415c8ac8a6
commit b77536aa5e
79 changed files with 8087 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
"""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"