Deprecate AUTO TESTING: Remove run_module_tests_auto from all _dev.py modules. Standardize on full-module test execution for reliable, context-aware testing.

This commit is contained in:
Vijay Janapa Reddi
2025-07-20 13:28:10 -04:00
parent 9cfb6726c2
commit cc9cdee97d
15 changed files with 370 additions and 1005 deletions

View File

@@ -917,32 +917,6 @@ def test_unit_tensor_arithmetic():
# Run the test
test_unit_tensor_arithmetic()
# %% [markdown]
"""
## 🧪 Module Testing
Time to test your implementation! This section uses TinyTorch's standardized testing framework to ensure your implementation works correctly.
**This testing section is locked** - it provides consistent feedback across all modules and cannot be modified.
"""
# %% [markdown]
"""
## 🤖 AUTO TESTING
"""
# %% nbgrader={"grade": false, "grade_id": "standardized-testing", "locked": true, "schema_version": 3, "solution": false, "task": false}
# =============================================================================
# STANDARDIZED MODULE TESTING - DO NOT MODIFY
# This cell is locked to ensure consistent testing across all TinyTorch modules
# =============================================================================
if __name__ == "__main__":
from tito.tools.testing import run_module_tests_auto
# Automatically discover and run all tests in this module
success = run_module_tests_auto("Tensor")
# %% [markdown]
"""
## 🎯 MODULE SUMMARY: Tensor Foundation