mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-05-01 03:17:32 -05:00
- Move testing utilities from tinytorch/utils/testing.py to tito/tools/testing.py - Update all module imports to use tito.tools.testing - Remove testing utilities from core TinyTorch package - Testing utilities are development tools, not part of the ML library - Maintains clean separation between library code and development toolchain - All tests continue to work correctly with improved architecture
19 lines
315 B
Python
19 lines
315 B
Python
"""
|
|
CLI Tools package.
|
|
|
|
Contains utility tools used by the CLI commands.
|
|
"""
|
|
|
|
from .testing import (
|
|
ModuleTestRunner,
|
|
create_test_runner,
|
|
run_module_tests_auto,
|
|
run_module_tests
|
|
)
|
|
|
|
__all__ = [
|
|
'ModuleTestRunner',
|
|
'create_test_runner',
|
|
'run_module_tests_auto',
|
|
'run_module_tests'
|
|
] |