@@ -16,16 +16,16 @@ def main():
1616
1717 try :
1818 import pyhelios
19- print (f'✓ PyHelios { pyhelios .__version__ } imported successfully' )
19+ print (f'[OK] PyHelios { pyhelios .__version__ } imported successfully' )
2020
2121 # Test native library loading
2222 from pyhelios .plugins import get_plugin_info
2323 info = get_plugin_info ()
24- print (f'✓ Platform: { info ["platform" ]} ' )
25- print (f'✓ Mock mode: { info ["is_mock" ]} ' )
24+ print (f'[OK] Platform: { info ["platform" ]} ' )
25+ print (f'[OK] Mock mode: { info ["is_mock" ]} ' )
2626
2727 if info ['is_mock' ]:
28- print ('✗ ERROR: Wheel is in mock mode - native libraries not found!' )
28+ print ('[ ERROR] Wheel is in mock mode - native libraries not found!' )
2929 print (f' Plugin directory: { info .get ("plugin_dir" , "Not set" )} ' )
3030 available = info .get ("available_files" , [])
3131 print (f' Available files: { available } ' )
@@ -34,12 +34,12 @@ def main():
3434 raise RuntimeError ('Native libraries not working in installed wheel' )
3535 else :
3636 lib_path = info .get ('library_path' , 'Unknown' )
37- print (f'✓ SUCCESS: Native library loaded from: { lib_path } ' )
37+ print (f'[ SUCCESS] Native library loaded from: { lib_path } ' )
3838
39- print ('✓ Wheel functionality test completed successfully' )
39+ print ('[OK] Wheel functionality test completed successfully' )
4040
4141 except Exception as e :
42- print (f'✗ FAILED: { e } ' )
42+ print (f'[ FAILED] { e } ' )
4343 import traceback
4444 traceback .print_exc ()
4545 return False
0 commit comments