(fix) testing import litellm on python 3.8

This commit is contained in:
ishaan-jaff 2024-03-09 18:18:18 -08:00
parent abe0ec601c
commit ada6cdab3d
2 changed files with 10 additions and 5 deletions

View file

@ -10,6 +10,8 @@ sys.path.insert(
def test_using_litellm():
try:
import litellm
print("litellm imported successfully")
except Exception as e:
pytest.fail(
f"Error occurred: {e}. Installing litellm on python3.8 failed please retry"