From 587723996f0af2836a52a56cd899317bc80dbf5a Mon Sep 17 00:00:00 2001 From: Laurien Lummer Date: Wed, 23 Apr 2025 20:44:40 +0200 Subject: [PATCH] move file to local testing --- .../test_enduser_spend_reset.py} | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) rename tests/{litellm/proxy/common_utils/test_integration_reset_enduser_spend.py => local_testing/test_enduser_spend_reset.py} (99%) diff --git a/tests/litellm/proxy/common_utils/test_integration_reset_enduser_spend.py b/tests/local_testing/test_enduser_spend_reset.py similarity index 99% rename from tests/litellm/proxy/common_utils/test_integration_reset_enduser_spend.py rename to tests/local_testing/test_enduser_spend_reset.py index 999584451b..832ba9b324 100644 --- a/tests/litellm/proxy/common_utils/test_integration_reset_enduser_spend.py +++ b/tests/local_testing/test_enduser_spend_reset.py @@ -10,16 +10,15 @@ import pytest_asyncio from dotenv import load_dotenv from litellm.caching.caching import DualCache - -load_dotenv() - -sys.path.insert( - 0, os.path.abspath("../../..") -) # Adds the parent directory to the system path - from litellm.proxy.common_utils.reset_budget_job import ResetBudgetJob from litellm.proxy.utils import PrismaClient, ProxyLogging +sys.path.insert( + 0, os.path.abspath("../..") +) # Adds the parent directory to the system path + +load_dotenv() + async def create_budget(session, data): url = "http://0.0.0.0:4000/budget/new"