Fix CI: editable install and PR lint push - #186
Merged
Conversation
pip install -e . failed on every daily-model-tests job — flat-layout discovery found ['ara', 'legacy'] and refused to guess. Pin discovery to ara*; legacy/ stays on PYTHONPATH as before. Lint on PRs auto-formatted then pushed to the PR branch, which the no-merge-commits ruleset rejects. PRs now just check the tree is clean; main keeps auto-committing. Co-Authored-By: Claude Opus 5 <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.
Both failing runs, one cause each.
Daily Model Tests (all 4 jobs):
pip install -e .died withMultiple top-level packages discovered in a flat-layout: ['ara', 'legacy']— adding
legacy/in #183 broke setuptools auto-discovery. Discovery is nowpinned to
ara*;legacy/is still reached viaPYTHONPATH: .as the testjobs already set.
Lint on PR branches: the job black/ruff-fixes the tree then pushes to the
PR branch, which the "must not contain merge commits" ruleset rejects
(
GH013). PRs now fail with a diff instead of trying to push; pushes to mainstill auto-commit the formatting.
Verified locally:
pip install -e . --no-deps --dry-runresolves,black --check .and
ruff check .clean.🤖 Generated with Claude Code