From 22d56037788ca1ad33055768ad99709925c023c4 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Fri, 29 Mar 2024 22:09:21 -0700 Subject: [PATCH] ci(config.yml): add lunary to circle ci --- .circleci/config.yml | 1 + litellm/tests/test_lunary.py | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3e18d26dd..321236f46 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,6 +34,7 @@ jobs: pip install "boto3>=1.28.57" pip install "aioboto3>=12.3.0" pip install langchain + pip install lunary==0.2.5 pip install "langfuse>=2.0.0" pip install numpydoc pip install traceloop-sdk==0.0.69 diff --git a/litellm/tests/test_lunary.py b/litellm/tests/test_lunary.py index be98fb102..cbf9364af 100644 --- a/litellm/tests/test_lunary.py +++ b/litellm/tests/test_lunary.py @@ -12,7 +12,6 @@ litellm.success_callback = ["lunary"] litellm.set_verbose = True - def test_lunary_logging(): try: response = completion( @@ -40,8 +39,10 @@ def test_lunary_template(): except Exception as e: print(e) + # test_lunary_template() + def test_lunary_logging_with_metadata(): try: response = completion( @@ -81,4 +82,4 @@ def test_lunary_logging_with_streaming_and_metadata(): print(e) -test_lunary_logging_with_streaming_and_metadata() +# test_lunary_logging_with_streaming_and_metadata()