From 25b2bc6da9bef4d31fb4933ff2573791c51987a9 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Thu, 16 Nov 2023 14:46:24 -0800 Subject: [PATCH] (test) add --debug to cli tool --- litellm/tests/test_proxy_cli.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/litellm/tests/test_proxy_cli.py b/litellm/tests/test_proxy_cli.py index 318a92d3bf..e2b238da0d 100644 --- a/litellm/tests/test_proxy_cli.py +++ b/litellm/tests/test_proxy_cli.py @@ -14,10 +14,8 @@ def test_basic_proxy_cli_command(): # Command to run print("current working dir", os.getcwd()) - contents = os.listdir(os.getcwd()) - print("Contents in dir", contents) - command = "python3 litellm/proxy/proxy_cli.py --model gpt-3.5-turbo --port 51670" + command = "python3 litellm/proxy/proxy_cli.py --model gpt-3.5-turbo --port 51670 --debug" print("Running command to start proxy") # Start the subprocess asynchronously