fix(ci): restore green CI — format graph.py + clean test lint#1
Merged
Conversation
CI on main was red for a pre-existing reason unrelated to any new work: - docket_md/_logic/graph.py was not `ruff format`-clean, failing the lint job's `ruff format --check docket_md/` gate. - tests/ carried 10 ruff lint errors (unused imports and similar), cleaned with `ruff check --fix` and reformatted with `ruff format`. No behavior changes. All CI gates now pass locally: ruff check docket_md/ -> pass ruff format --check docket_md/ -> pass pytest tests/ -> 62 passed Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
CI on
mainwas red for a pre-existing reason unrelated to any feature work:docket_md/_logic/graph.pywas notruff format-clean, so the lint job'sruff format --check docket_md/gate failed.tests/carried 10 ruff lint errors (unused imports and similar).All 62 tests were already passing — the red was purely lint/format.
Fix
ruff format docket_md/— reformattedgraph.py.ruff check --fix tests/ docket_md/— cleared 10 lint errors.ruff format tests/— reformatted test files.No behavior changes.
Verification (exact CI commands, run locally)
ruff check docket_md/→ passruff format --check docket_md/→ 33 files already formattedpytest tests/→ 62 passed🤖 Generated with Claude Code