@@ -82,7 +82,7 @@ cargo build
8282cargo test
8383
8484# Run the comprehensive test suite
85- ./scripts/run_tests .sh
85+ ./scripts/run-tests .sh
8686```
8787
8888### 4. Install Development Tools
@@ -172,13 +172,13 @@ My philosophy on testing is to "test what matters." Tests focus on integration a
172172cargo test
173173
174174# Comprehensive test suite with reporting
175- ./scripts/run_tests .sh --verbose
175+ ./scripts/run-tests .sh --verbose
176176
177177# Include performance tests
178- ./scripts/run_tests .sh --performance
178+ ./scripts/run-tests .sh --performance
179179
180180# Filter specific tests
181- ./scripts/run_tests .sh --filter sparse_checkout
181+ ./scripts/run-tests .sh --filter sparse_checkout
182182```
183183
184184### Writing Tests
@@ -235,7 +235,7 @@ fn test_submod_init_command() {
235235Before submitting your PR, ensure:
236236
237237- [ ] ** Code compiles** without warnings
238- - [ ] ** All tests pass** (` ./scripts/run_tests .sh ` )
238+ - [ ] ** All tests pass** (` ./scripts/run-tests .sh ` )
239239- [ ] ** Code is formatted** (` cargo fmt ` )
240240- [ ] ** Lints pass** (` cargo clippy ` )
241241- [ ] ** Documentation is updated** if needed
@@ -266,7 +266,7 @@ Brief description of the changes and motivation.
266266## Testing
267267- [ ] I have added tests that prove my fix is effective or that my feature works
268268- [ ] New and existing unit tests pass locally with my changes
269- - [ ] I have run the full test suite (`./scripts/run_tests .sh`)
269+ - [ ] I have run the full test suite (`./scripts/run-tests .sh`)
270270
271271## Checklist
272272- [ ] My code follows the project's style guidelines
0 commit comments