mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-12 23:01:41 +00:00
fix startup
This commit is contained in:
parent
b4e745323a
commit
6572ba7a0e
1 changed files with 4 additions and 1 deletions
|
|
@ -4,7 +4,6 @@ import subprocess
|
|||
import sys
|
||||
import time
|
||||
import traceback
|
||||
|
||||
import pytest
|
||||
|
||||
sys.path.insert(
|
||||
|
|
@ -29,6 +28,10 @@ def test_litellm_proxy_server_config_no_general_settings():
|
|||
subprocess.run(["pip", "install", "litellm[extra_proxy]"])
|
||||
filepath = os.path.dirname(os.path.abspath(__file__))
|
||||
config_fp = f"{filepath}/test_configs/test_config.yaml"
|
||||
|
||||
# Set DATABASE_URL environment variable
|
||||
os.environ["DATABASE_URL"] = os.getenv("TOXI_PROXY_DATABASE_URL")
|
||||
|
||||
server_process = subprocess.Popen(
|
||||
[
|
||||
"python",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue