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

@@ -545,23 +545,6 @@ def test_unit_system_info_basic():
# Run the test
test_unit_system_info_basic()
# %% [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("Setup")
# %% [markdown]
"""
## 🎯 MODULE SUMMARY: Setup Configuration