Skip to content

Commit 1dd06f7

Browse files
committed
fix docstring
1 parent 4c614bb commit 1dd06f7

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

python/tests/integration/test_insights_api.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
"""
22
Integration tests for the /v1/insights API endpoints.
33
4-
These tests rely on an ephemeral Postgres database via testcontainers and are
5-
skipped unless RUN_DB_TESTS=1 is set.
4+
These tests rely on an ephemeral Postgres database via testcontainers and run
5+
by default. They are automatically skipped if Docker is unavailable.
6+
7+
To skip these tests explicitly, use: pytest -m "not db"
68
"""
79

810
from __future__ import annotations

python/tests/unit/db/test_repository.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
"""
22
Unit tests for cairo_coder.db.repository using an ephemeral Postgres DB.
33
4-
These tests use the shared DB fixtures from tests/integration/conftest.py.
4+
These tests use the shared DB fixtures from tests/integration/conftest.py and run
5+
by default. They are automatically skipped if Docker is unavailable.
6+
7+
To skip these tests explicitly, use: pytest -m "not db"
58
"""
69

710
from __future__ import annotations

0 commit comments

Comments
 (0)