fix(ci): restore lint-full and test-architecture on main - #607
Merged
Conversation
Baseline ruff check/format drift and a provider-import architecture violation were failing Lint & Format for every PR. Reformat the affected benchmark/test files, fix unused imports and Path.stat usage, move the audit-fix source assertion off a provider import, and refresh the two Dockerfile checksums plus C901 baseline entries that those edits require. Co-authored-by: morluto <morluto@users.noreply.github.com>
morluto
marked this pull request as ready for review
August 7, 2026 03:09
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
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.
Root cause
maincurrently failsmake lint-full/make test-architecture, so every PR's Lint & Format job fails even when the PR itself is clean. That is what blocked #604 and #605.Failures on
main:tests/unit/support/test_copy_template.pyandtests/unit/tooling/test_audit_fixes.py(PTH116, unused imports/vars, import order)implementation.pyprovider-importarchitecture violation intests/unit/tooling/test_audit_fixes_round2.pyWhat changed
Validation
make lint-full: passmake test-architecture: passpytest -q tests/unit/support/test_copy_template.py tests/unit/tooling/test_audit_fixes.py tests/unit/tooling/test_audit_fixes_round2.py: 13 passedNotes for #604 / #605
Those PRs already carry equivalent baseline commits on their branches, so their Lint & Format jobs are green again. Merging this into
mainremoves the shared blocker for future PRs.