chore: fix stale validator references (scripts.validate → app.validate)#126
Merged
Conversation
- app/validate.py docstring: `python -m scripts.validate` -> `python -m app.validate` (no `scripts/` module exists; validator lives at app/validate.py, matching README + CI) - .gitignore: drop stale note about non-existent `data/_staging/` directory Refs #1
Member
TechEngine change review: PASS
Changed data
Changed record examples
Heuristic review
|
Member
TechEngine validation stats: PASS
Data summary
Warning Tracked verified coverage is below 50% for watch 2.5% (11/433), brand 4.8% (10/207), tablet 5.0% (174/3455), soc 5.8% (123/2104), smartphone 9.1% (8453/93396), all 9.5% (10028/105742), gpu 12.0% (244/2030), pda 19.3% (27/140), and 1 more. Validation notes
Key output:
|
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
Two tiny doc/config corrections — no code behavior change, no data change (so no dump refresh needed).
app/validate.pydocstring:python -m scripts.validate→python -m app.validate. There is noscripts/module; the validator lives atapp/validate.py, matching the README and thevalidate-dataCI workflow..gitignore: removed a stale note referencing a non-existentdata/_staging/directory.Why
Leftover references from an old module layout were misleading. Surfaced during a repo-wide cleanup pass.
Refs #1