mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
(test) debug logs test - router
This commit is contained in:
parent
0196ac6376
commit
f408162449
1 changed files with 4 additions and 1 deletions
|
|
@ -69,7 +69,10 @@ def test_async_fallbacks(caplog):
|
|||
# on circle ci the captured logs get some async task exception logs - filter them out
|
||||
"Task exception was never retrieved"
|
||||
captured_logs = [
|
||||
log for log in captured_logs if "Task exception was never retrieved" not in log
|
||||
log
|
||||
for log in captured_logs
|
||||
if "Task exception was never retrieved" not in log
|
||||
and "get_available_deployment" not in log
|
||||
]
|
||||
|
||||
print("\n Captured caplog records - ", captured_logs)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue