From b65a27035e598bf2ba31f193bbf3a9815e4f9a0e Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Thu, 8 Aug 2024 13:42:15 -0700 Subject: [PATCH] test(test_langsmith.py): skip flaky test --- litellm/tests/test_langsmith.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/litellm/tests/test_langsmith.py b/litellm/tests/test_langsmith.py index 68182e73d52..9575c18da7b 100644 --- a/litellm/tests/test_langsmith.py +++ b/litellm/tests/test_langsmith.py @@ -22,6 +22,7 @@ litellm.set_verbose = True import time +@pytest.mark.skip(reason="Flaky test. covered by unit tests on custom logger.") @pytest.mark.asyncio() async def test_async_langsmith_logging(): try: @@ -89,6 +90,7 @@ async def test_async_langsmith_logging(): # test_langsmith_logging() +@pytest.mark.skip(reason="Flaky test. covered by unit tests on custom logger.") def test_async_langsmith_logging_with_metadata(): try: litellm.success_callback = ["langsmith"] @@ -111,6 +113,7 @@ def test_async_langsmith_logging_with_metadata(): print(e) +@pytest.mark.skip(reason="Flaky test. covered by unit tests on custom logger.") @pytest.mark.parametrize("sync_mode", [False, True]) @pytest.mark.asyncio async def test_async_langsmith_logging_with_streaming_and_metadata(sync_mode):