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

@@ -816,27 +816,6 @@ def test_module_conv2d_tensor_compatibility():
assert output_tensor.shape == expected_shape, f"Expected output shape {expected_shape}, but got {output_tensor.shape}"
print("✅ Integration Test Passed: Conv2D layer correctly transformed image tensor.")
# %% [markdown]
"""
## 🤖 AUTO TESTING
"""
# %%
# Run the integration test
test_module_conv2d_tensor_compatibility()
# %% [markdown]
"""
## 🤖 AUTO TESTING
"""
# %%
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("CNN")
# %% [markdown]
"""
## 🎯 MODULE SUMMARY: Convolutional Networks