fbd6602814
---ci--- phase: 0 milestone: v0.1 status: complete ---/ci---
13 lines
243 B
Python
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" |