diff options
Diffstat (limited to 'tests/test_simple.py')
| -rw-r--r-- | tests/test_simple.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_simple.py b/tests/test_simple.py index e86dbd6..e7a023b 100644 --- a/tests/test_simple.py +++ b/tests/test_simple.py @@ -8,7 +8,7 @@ import numpy as np # Test the event_processor module try: - from transivent import ( + from transivent.event_processor import ( extract_event_waveforms, calculate_msd_parallel, calculate_acf, @@ -18,6 +18,8 @@ try: print("✓ Successfully imported event_processor functions") except ImportError as e: print(f"✗ Import error: {e}") + import traceback + traceback.print_exc() sys.exit(1) def test_extract_event_waveforms(): |
