You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use ASCII fallbacks for Unicode symbols on Windows
On Windows terminals using cp1252 encoding, Unicode characters like
✓, ✗, and → cannot be encoded. This fix adds a _supports_unicode()
check that falls back to ASCII-safe alternatives:
- ✓ → [OK]
- ✗ → [FAIL]
- → → ->
Fixes CI failure on Windows: UnicodeEncodeError with cp1252 codec
0 commit comments