From 4512510d374e67f5f745996950ef18df582ca9c4 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Sat, 6 Apr 2024 18:24:00 -0700 Subject: [PATCH] Revert "fix test streaming" This reverts commit f10aba100766871bd9e373f1d81522ea23182ea3. --- .circleci/config.yml | 1 - litellm/tests/test_streaming.py | 3 --- 2 files changed, 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 355e57e4b..92892d3ff 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -43,7 +43,6 @@ jobs: pip install "langfuse==2.7.3" pip install numpydoc pip install traceloop-sdk==0.0.69 - pip install nest-asyncio==1.6.0 pip install openai pip install prisma pip install "httpx==0.24.1" diff --git a/litellm/tests/test_streaming.py b/litellm/tests/test_streaming.py index 81c021093..ed6298752 100644 --- a/litellm/tests/test_streaming.py +++ b/litellm/tests/test_streaming.py @@ -5,9 +5,6 @@ import sys, os, asyncio import traceback import time, pytest from pydantic import BaseModel -import nest_asyncio - -nest_asyncio.apply() sys.path.insert( 0, os.path.abspath("../..")