mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 19:24:27 +00:00
refactor: move all testing to top-level of repo
Closes https://github.com/BerriAI/litellm/issues/486
This commit is contained in:
parent
32917585a5
commit
ea96eebe85
213 changed files with 74 additions and 217 deletions
13
tests/local_testing/test_validate_environment.py
Normal file
13
tests/local_testing/test_validate_environment.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
#### What this tests ####
|
||||
# This tests the validate environment function
|
||||
|
||||
import sys, os
|
||||
import traceback
|
||||
|
||||
sys.path.insert(
|
||||
0, os.path.abspath("../..")
|
||||
) # Adds the parent directory to the system path
|
||||
import time
|
||||
import litellm
|
||||
|
||||
print(litellm.validate_environment("openai/gpt-3.5-turbo"))
|
Loading…
Add table
Add a link
Reference in a new issue