Skip to content
This repository was archived by the owner on Jan 19, 2026. It is now read-only.

Commit b04d382

Browse files
committed
chore: add docstrings and ruff noqa directives to test files
Add module-level docstrings and ruff: noqa: E402 directives to all test files to suppress import order warnings.
1 parent 0ff110b commit b04d382

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed

tests/test_concurrency.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""Concurrency-related tests."""
2+
3+
# ruff: noqa: E402
4+
15
import io
26
import json
37
import os

tests/test_export_plan.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""Tests for scripts/export_plan.py."""
2+
3+
# ruff: noqa: E402
4+
15
import io
26
import json
37
import sys

tests/test_export_project_plans.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""Tests for scripts/export_project_plans.py."""
2+
3+
# ruff: noqa: E402
4+
15
import json
26
import os
37
import sys

tests/test_export_project_plans_with_timestamp.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""Tests for scripts/export_project_plans_with_timestamp.py."""
2+
3+
# ruff: noqa: E402
4+
15
import json
26
import os
37
import sys

tests/test_session_start.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""Tests for scripts/session_start.py."""
2+
3+
# ruff: noqa: E402
4+
15
import io
26
import json
37
import os

0 commit comments

Comments
 (0)