@@ -462,7 +462,9 @@ CI automation (when enabled) does not replace manual responsibility.
462462#### Command
463463
464464``` bash
465- python -m codegen validate-tests --all
465+ # Note: validate-tests was planned but not implemented
466+ # Using check command instead:
467+ python -m codegen check --all
466468```
467469
468470#### Pass Condition
@@ -660,7 +662,7 @@ Phase 6: solve_generator ◀── Phase 5: generators/ ◀── Phase 4: codeg
660662
6616632 . ** Run Gate 0 validation**
662664 ``` bash
663- python -m codegen validate-tests --all
665+ python -m codegen check --all
664666 ```
665667
6666683 . ** Review and commit**
@@ -745,8 +747,9 @@ Phase 6: solve_generator ◀── Phase 5: generators/ ◀── Phase 4: codeg
745747
7467482 . ** Validate all Tier-0 problems**
747749 ``` bash
748- # Run E2E validation script (to be created)
749- python -m codegen validate-e2e --tier 0
750+ # Note: validate-e2e was planned but not implemented
751+ # Use check command instead:
752+ python -m codegen check --all
750753 ```
751754
7527553 . ** Verify unsupported types fail gracefully**
@@ -853,7 +856,7 @@ python -m codegen migrate --all --dry-run
853856python -m codegen migrate --all
854857
855858# Step 3: Validate
856- python -m codegen validate-tests --all
859+ python -m codegen check --all
857860
858861# Step 4: Run regression to ensure nothing broke
859862python runner/test_runner.py --all
@@ -1017,7 +1020,7 @@ Prioritize by complexity:
10171020| Task | Command |
10181021| ------| ---------|
10191022| Migrate tests | ` python -m codegen migrate --all ` |
1020- | Validate tests | ` python -m codegen validate-tests --all ` |
1023+ | Validate tests | ` python -m codegen check --all ` |
10211024| Run regression | ` python runner/test_runner.py --all ` |
10221025| New problem + tests | ` python -m codegen new <id> --with-tests ` |
10231026| Check consistency | ` python -m codegen check <id> ` |
@@ -1088,16 +1091,18 @@ python -m codegen migrate 0001_two_sum
10881091python -m codegen migrate --all --no-backup
10891092```
10901093
1091- #### `codegen validate-tests`
1094+ #### `codegen validate-tests` (Not Implemented)
1095+
1096+ > **Note**: This command was planned but not implemented. Use `codegen check --all` instead for test file validation.
10921097
10931098Validate test files against canonical format (Gate 0).
10941099
10951100```bash
1096- python -m codegen validate-tests [options]
1101+ # Planned command (not implemented):
1102+ # python -m codegen validate-tests [options]
10971103
1098- Options:
1099- --all Validate all test files
1100- --verbose Show detailed output
1104+ # Use this instead:
1105+ python -m codegen check --all
11011106```
11021107
11031108#### `codegen check`
@@ -1260,7 +1265,7 @@ git checkout HEAD~1 -- generators/
12601265
12611266#### Scenario 1: Gate 0 fails after migration
12621267
1263- **Symptom:** `validate-tests ` reports parse errors
1268+ **Symptom:** `codegen check ` reports parse errors
12641269
12651270**Recovery:**
126612711. Identify failing files from error output
0 commit comments