Improved code quality with more idiomatic Python patterns and safer initialization.
CI / Formatting (push) Successful in 5s
CI / Linting (push) Successful in 4s
CI / Tests (push) Successful in 21s
CI / Type Checking (push) Failing after 10s
CI / Spelling (push) Successful in 5s

This commit is contained in:
2026-03-22 14:41:38 -04:00
parent 371f7d2ca3
commit 2cf00fde4f
13 changed files with 148 additions and 79 deletions
+2 -2
View File
@@ -21,12 +21,12 @@ import pytest
from crabstero.database import Database
if TYPE_CHECKING:
from collections.abc import AsyncIterator
from collections.abc import AsyncGenerator
from pathlib import Path
@pytest.fixture
async def db(tmp_path: Path) -> AsyncIterator[Database]:
async def db(tmp_path: Path) -> AsyncGenerator[Database]:
"""Yield a Database backed by a temporary SQLite file."""
database = await Database.connect(str(tmp_path / "test.db"))
yield database