fix: update test dependency chains to correct module numbering

- Update MODULE_DEPENDENCIES dict to match current 01-20 structure
- Fix dependency chain comments in test_progressive_integration.py files
- Update CHECKPOINTS in test_checkpoint_integration.py
- Update module_mappings in package_manager_integration.py
- Update module_order in module_complete_orchestrator.py

The old test files referenced incorrect module numbers (06_spatial instead
of 09_convolutions) from an outdated module structure.

🤖 Generated with [Claude Code](https://claude.com/claude-code)
This commit is contained in:
Vijay Janapa Reddi
2025-12-14 13:21:59 -05:00
parent 0c3c75678e
commit ff810c02f1
13 changed files with 163 additions and 121 deletions

View File

@@ -1,9 +1,9 @@
"""
Module 10: Progressive Integration Tests
Tests that Module 11 (Training) works correctly AND that the entire prior stack works.
Tests that Module 10 (Tokenization) works correctly AND that Foundation + Architecture tier work.
DEPENDENCY CHAIN: 01_setup → 02_tensor → 03_activations → 04_layers → 05_dense → 06_spatial → 07_attention → 08_dataloader → 09_autograd → 10_optimizers → 11_training
This is where we enable complete end-to-end training loops.
DEPENDENCY CHAIN: 01_tensor → ... → 08_dataloader → 09_convolutions → 10_tokenization
This is where text processing begins for NLP pipelines.
"""
import numpy as np