feat(plugin): add smart pre-commit test runner#950
Merged
JeremyDev87 merged 1 commit intomasterfrom Mar 26, 2026
Merged
Conversation
…stions - Add SmartTestRunner class with file-to-test mapping (TS, TSX, Python) - Integrate into pre-tool-use hook to suggest related tests on git commit - Support .spec/.test, __tests__/ directory, and test_*.py conventions - Graceful degradation when subprocess or imports fail - 18 tests (12 unit + 6 integration), all 187 suite tests passing Closes #944
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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
SmartTestRunnerclass that maps changed files to related test files (TS → .spec/.test, Python → test_*.py, TSX → tests/)pre-tool-use.pyhook to suggest related tests ongit commitTest plan
python3 -m pytest packages/claude-code-plugin/tests/test_smart_test_runner.py— 12 tests passpython3 -m pytest packages/claude-code-plugin/tests/test_pre_tool_use.py— 16 tests pass (6 new)python3 -m pytest packages/claude-code-plugin/tests/— 187/187 passCloses #944