test_message_summary: Add a basic test.

This commit is contained in:
Aman Agrawal
2025-01-26 00:48:09 +05:30
committed by Tim Abbott
parent aceb79ba88
commit dc9422ec81
7 changed files with 179 additions and 9 deletions

View File

@@ -179,6 +179,8 @@ RUNNING_OPENAPI_CURL_TEST = False
# This is overridden in test_settings.py for the test suites
GENERATE_STRIPE_FIXTURES = False
# This is overridden in test_settings.py for the test suites
GENERATE_LITELLM_FIXTURES = False
# This is overridden in test_settings.py for the test suites
BAN_CONSOLE_OUTPUT = False
# This is overridden in test_settings.py for the test suites
TEST_WORKER_DIR = ""

View File

@@ -55,6 +55,9 @@ if "RUNNING_OPENAPI_CURL_TEST" in os.environ:
if "GENERATE_STRIPE_FIXTURES" in os.environ:
GENERATE_STRIPE_FIXTURES = True
if "GENERATE_LITELLM_FIXTURES" in os.environ:
GENERATE_LITELLM_FIXTURES = True
if "BAN_CONSOLE_OUTPUT" in os.environ:
BAN_CONSOLE_OUTPUT = True