From 15439a6aa9cefd0122d79258acb67bb4f4b6b4ec Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Wed, 15 Nov 2023 18:14:09 -0800 Subject: [PATCH] (chore) testing reset callbacks --- litellm/tests/test_supabase_integration.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/litellm/tests/test_supabase_integration.py b/litellm/tests/test_supabase_integration.py index 84f77d1847..d117c5265d 100644 --- a/litellm/tests/test_supabase_integration.py +++ b/litellm/tests/test_supabase_integration.py @@ -58,10 +58,15 @@ def test_acompletion_sync(): print(f"error occurred: {traceback.format_exc()}") pass - asyncio.run(completion_call()) # test_acompletion_sync() +# reset callbacks +litellm.input_callback = [] +litellm.success_callback = [] +litellm.failure_callback = [] + +