ci(verify): match verify.yml to real make ci + PEP668 venv - #24
Open
telleroutlook wants to merge 1 commit into
Open
ci(verify): match verify.yml to real make ci + PEP668 venv#24telleroutlook wants to merge 1 commit into
telleroutlook wants to merge 1 commit into
Conversation
The onboard-generated verify.yml used bare 'pip install -e' which fails on this externally-managed (PEP 668) Python runner, and a narrow ruff scope. Replace with the repo's real gates: venv on shared bigdisk (local fallback), import check, ruff over the same paths as 'make lint', scripts/check-schema-fields.py, and pytest tests/. Mirrors 'make ci'.
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.
What
Replace the onboard-generated
.claude-bot/verify.ymlwith one that matches trace-pipeline's real CI (make ci) and this runner's environment.Why
The default generated by
onboardfor Python repos used barepip install -e ".[dev]", which fails on this externally-managed (PEP 668) runner (error: externally-managed-environment), and ranruff check .over the whole tree (includingpapers/,data/). It never actually installed the package, sopytest/ruffran against system Python.Change
Mirrors
make ci, using the same venv pattern aswasmagent-train-replay:/mnt/bigdisk/venv/<slug>) with a local.venv-localfallback, thenpip install -e ".[dev]"into it.import evomerge; import eval_trust.ruff checkover the exact pathsmake lintuses.scripts/check-schema-fields.py(data-loop field coverage).pytest tests/ -x -q.Part of onboarding trace-pipeline as a
fullrepo.