mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-06-03 14:05:51 -05:00
- Add four-tier testing architecture (inline, module, integration, system) - Implement comprehensive inline testing for Tensor, Activations, Layers, Networks modules - Create mock-based module testing approach to avoid dependency cascade - Add integration and system test directory structure - Update testing documentation with design principles and guidelines - Enhance educational testing with visual feedback and real ML scenarios - Total: 2,200+ lines of comprehensive testing across modules
6 lines
149 B
Python
6 lines
149 B
Python
"""
|
|
Integration tests for TinyTorch.
|
|
|
|
These tests verify that different modules work together correctly
|
|
in realistic ML workflows and pipelines.
|
|
""" |