fix: harden validate CLI + scrub registry path leaks#3
Merged
Conversation
Two related fixes after the audit on PR #2: 1. validate CLI accepts files, multiple paths, and directories (recursed for *.yaml/*.yml). exists=True/file_okay/dir_okay on the typer Argument so a typo or missing path fails before reaching the function body. Always loud about what was found ("N/M valid"); exits 2 if no .yaml files matched (distinct from validation failure exit 1) so the CI can't ever silently iterate a literal glob again. 2. .github/workflows/ci.yml validate-registry collapses to one invocation: 'python -m servingcard validate registry/'. No more bash-glob fragility. 3. Registry leak scrub: 4 YAMLs published absolute /home/<user>/models/ paths in serving.engine_args.model. Replaced with \${MODEL_DIR}/... convention. All 6 registry cards still validate. 4. Tests: 4 new regression tests covering missing path, directory recurse, empty directory (exit 2), and multi-path. 16/16 passing.
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
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
Follow-up to #2 after a leak/CI audit. Three things:
1. Hardened `validate` CLI
2. validate-registry CI step collapses to one invocation
```yaml
run: python -m servingcard validate registry/
```
No more bash glob fragility.
3. Registry path leak scrub
4 YAMLs were publishing absolute `/home//models/...` paths in `serving.engine_args.model`. Replaced with `${MODEL_DIR}/...` convention:
All 6 registry cards still validate.
Test plan