conftest.py
python
sha256:3ff9c9863a9891bdcde71b4a43228f66d0493e38b7cc1d09fe9eb7de774046b2
feat: add repair-commit wire endpoint (API parity with repa…
Opus 4.8
minor
⚠ breaking
1 day ago
| 1 | """Unit test conftest — overrides session DB fixtures with no-ops. |
| 2 | |
| 3 | Unit tests in this directory are pure-logic tests that do not touch the |
| 4 | database. The session-scoped _db_schema fixture in the parent conftest.py |
| 5 | tries to connect to the test Postgres instance; override it here so unit |
| 6 | tests can run without a live DB. |
| 7 | """ |
| 8 | from __future__ import annotations |
| 9 | |
| 10 | from collections.abc import Generator |
| 11 | |
| 12 | import pytest |
| 13 | |
| 14 | |
| 15 | @pytest.fixture(scope="session", autouse=True) |
| 16 | def _db_schema() -> Generator[None, None, None]: |
| 17 | """No-op override — unit tests do not need a database schema.""" |
| 18 | yield |
File History
1 commit
sha256:3ff9c9863a9891bdcde71b4a43228f66d0493e38b7cc1d09fe9eb7de774046b2
feat: add repair-commit wire endpoint (API parity with repa…
Opus 4.8
minor
⚠
1 day ago