File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ async def test_tui_creation():
7676 except Exception as e :
7777 print (f" ✗ TUI creation failed: { e } " )
7878 import traceback
79+
7980 traceback .print_exc ()
8081 return False
8182
@@ -102,6 +103,7 @@ async def test_session_store():
102103 except Exception as e :
103104 print (f" ✗ SessionStore test failed: { e } " )
104105 import traceback
106+
105107 traceback .print_exc ()
106108 return False
107109
@@ -138,13 +140,16 @@ async def test_run_tui_mode():
138140
139141 # Check run_tui
140142 print (f" ✓ run_tui is: { run_tui } " )
141- print (f" ✓ run_tui is coroutine function: { asyncio .iscoroutinefunction (run_tui )} " )
143+ print (
144+ f" ✓ run_tui is coroutine function: { asyncio .iscoroutinefunction (run_tui )} "
145+ )
142146
143147 return True
144148
145149 except Exception as e :
146150 print (f" ✗ run_tui_mode test failed: { e } " )
147151 import traceback
152+
148153 traceback .print_exc ()
149154 return False
150155
You can’t perform that action at this time.
0 commit comments