-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug_test.py
More file actions
32 lines (28 loc) · 750 Bytes
/
Copy pathdebug_test.py
File metadata and controls
32 lines (28 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""Quick debug test for modules that hang"""
import sys
import traceback
# Test advanced_synth imports
print("[TEST] Importing advanced_synth...")
try:
import advanced_synth
print(" OK - imports work")
except Exception as e:
print(f" ERROR: {e}")
traceback.print_exc()
# Test audio_analysis imports
print("\n[TEST] Importing audio_analysis_engine...")
try:
import audio_analysis_engine
print(" OK - imports work")
except Exception as e:
print(f" ERROR: {e}")
traceback.print_exc()
# Test auto_mixer imports
print("\n[TEST] Importing auto_mixer...")
try:
import auto_mixer
print(" OK - imports work")
except Exception as e:
print(f" ERROR: {e}")
traceback.print_exc()
print("\n[TEST] Done!")