ci: wire check-reqs into lint job to catch requirements drift#699
Open
mvillmow wants to merge 3 commits into
Open
ci: wire check-reqs into lint job to catch requirements drift#699mvillmow wants to merge 3 commits into
mvillmow wants to merge 3 commits into
Conversation
mvillmow
commented
Jun 21, 2026
Add check-reqs recipe to justfile and integrate into _required.yml lint workflow. This ensures pixi.toml updates are reflected in requirements.txt before merge, preventing stale pins in Docker builds. Follows #354. Closes #556 Implemented-By: claude-sonnet-4-6 Co-Authored-By: Claude Code <noreply@anthropic.com> Signed-off-by: Claude Haiku 4.5 <4211002+mvillmow@users.noreply.github.com> Signed-off-by: mvillmow <4211002+mvillmow@users.noreply.github.com>
Generated coverage report should not be in version control (churns on every test run, leaks absolute local paths). Addresses review feedback. Signed-off-by: Claude Haiku 4.5 <4211002+mvillmow@users.noreply.github.com> Signed-off-by: mvillmow <4211002+mvillmow@users.noreply.github.com>
Under the py3.14 CI env tomllib always imports, so the no-redef ignore on the py<3.11 tomli fallback is flagged as unused by mypy --strict (which the pre-commit lint job runs over scripts/). Match the existing pattern in scripts/check_dep_sync.py by adding import-not-found and unused-ignore codes. Addresses lint (mypy) failure. Signed-off-by: Claude Haiku 4.5 <4211002+mvillmow@users.noreply.github.com> Signed-off-by: mvillmow <4211002+mvillmow@users.noreply.github.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.
Summary
Add
check-reqsvalidation to the CI lint job to detect when pixi.toml or requirements.txt get out of sync, preventing stale dependency pins from reaching Docker builds.Changes
check-reqsrecipe to justfile for running sync_requirements.py in check modeTesting
Closes
Closes #556
Generated by Claude Code via ProjectHephaestus automation.