File size: 423 Bytes
418b512 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#!/usr/bin/env python3
# /// script
# dependencies = []
# ///
import time
import sys
import os
# Force unbuffered output
os.environ['PYTHONUNBUFFERED'] = '1'
print('🚀 UV CLI Test - Starting...', flush=True)
sys.stdout.flush()
for i in range(5):
print(f'✅ Step {i+1}/5 from UV CLI test', flush=True)
sys.stdout.flush()
time.sleep(1)
print('🎉 UV CLI Test - Complete!', flush=True)
sys.stdout.flush()
|