style(tests): fix ruff lint errors in test_bridge and test_codex_runner #12

Merged
agent-dev-a merged 1 commits from fix/ruff-unused-imports into main 2026-05-26 00:14:40 +00:00
2 changed files with 6 additions and 5 deletions
-2
View File
@@ -9,7 +9,6 @@ from __future__ import annotations
import asyncio
import json
from pathlib import Path
from typing import Any, Dict, List, Optional, Tuple
import pytest
@@ -17,7 +16,6 @@ import pytest
from codex_channel_molecule.bridge import _SessionStore, run_bridge
from codex_channel_molecule.codex_runner import CodexResult
# ----------------------------------------------------------------------
# Fakes
# ----------------------------------------------------------------------
+6 -3
View File
@@ -19,7 +19,6 @@ from codex_channel_molecule.codex_runner import (
_extract_session_id,
)
_FAKE_CODEX_SCRIPT = textwrap.dedent("""\
#!/usr/bin/env python3
\"\"\"Fake codex CLI for tests.
@@ -58,7 +57,10 @@ _FAKE_CODEX_SCRIPT = textwrap.dedent("""\
break
msg = args[i] if i < len(args) else \"\"
sid = resume_id or os.environ.get(\"FAKE_NEW_SESSION_ID\", \"a1b2c3d4-1111-2222-3333-444455556666\")
sid = resume_id or os.environ.get(
"FAKE_NEW_SESSION_ID",
"a1b2c3d4-1111-2222-3333-444455556666",
)
sys.stderr.write(f\"session: {sid}\\n\")
sys.stderr.flush()
@@ -241,7 +243,8 @@ async def test_run_does_not_duplicate_codex_bin_dir_in_path(tmp_path):
seen_path = result.text
occurrences = seen_path.split(os.pathsep).count(str(bin_dir))
assert occurrences == 1, (
f"expected codex_bin_dir to appear exactly once, got {occurrences}: {seen_path!r}"
"expected codex_bin_dir to appear exactly once, "
f"got {occurrences}: {seen_path!r}"
)