19 lines
463 B
Python
19 lines
463 B
Python
![]() |
#!/usr/bin/env python
|
||
|
import sys
|
||
|
import os
|
||
|
sys.path.append('server')
|
||
|
|
||
|
try:
|
||
|
from utils.training_progress import progress_manager
|
||
|
print("SUCCESS: Progress manager imported")
|
||
|
|
||
|
print("Testing basic functionality...")
|
||
|
status = progress_manager.get_current_status()
|
||
|
print(f"Initial status: {status}")
|
||
|
|
||
|
print("SUCCESS: All tests passed!")
|
||
|
|
||
|
except Exception as e:
|
||
|
print(f"ERROR: {e}")
|
||
|
import traceback
|
||
|
traceback.print_exc()
|