Spaces:
Running
Running
File size: 339 Bytes
6dc9d46 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | """Monitor evolution test progress"""
import time
print("Monitoring evolution test... (Press Ctrl+C to stop)")
print("=" * 70)
for i in range(60): # Check for 5 minutes
time.sleep(5)
print(f"[{i*5}s] Test still running...")
print("\nTest should be complete or nearly complete.")
print("Check terminal output for results.")
|