Files
cleveragents-core/features
HAL9000 302f630d98
CI / lint (pull_request) Successful in 36s
CI / build (pull_request) Successful in 38s
CI / quality (pull_request) Successful in 1m12s
CI / typecheck (pull_request) Successful in 1m18s
CI / security (pull_request) Successful in 1m17s
CI / helm (pull_request) Successful in 40s
CI / push-validation (pull_request) Successful in 19s
CI / integration_tests (pull_request) Failing after 3m36s
CI / e2e_tests (pull_request) Successful in 3m57s
CI / unit_tests (pull_request) Failing after 4m40s
CI / coverage (pull_request) Has been skipped
CI / docker (pull_request) Has been skipped
CI / status-check (pull_request) Failing after 4s
CI / benchmark-publish (pull_request) Has been cancelled
CI / benchmark-regression (pull_request) Has been cancelled
fix(tui): resolve lint, typecheck, and unit_tests CI failures
- Use module-level _StaticBase = _load_static_base() pattern (matches
  PersonaBar) so class SessionTabBar(_StaticBase) needs no type: ignore
- Replace base_cls.__init__(self, id=safe_id or "") with
  super().__init__(id=id, classes=classes) — passing id=None (not "")
  avoids Textual BadIdentifier on no-arg construction
- Replace try/except/pass with contextlib.suppress for SIM105
- Replace ambiguous U+276F in docstrings/comments with > (RUF002/003)
- Move Callable import to collections.abc (UP035)
- Replace assert False with raise AssertionError() (B011)
- Replace Optional[X] with X | None (UP035/UP007)
- Switch two conflicting @when step patterns to regex matcher with
  [^\"]+ captures to prevent Behave AmbiguousStep registration error
- Add quotes around {state} in update/verify step patterns so parse
  captures the value without surrounding double-quote characters
- Apply ruff format to session_store.py (pre-existing formatting drift)

ISSUES CLOSED: #5330
2026-06-10 09:18:51 -04:00
..