forked from expectedparrot/edsl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
54ebaba
commit 356cf8b
Showing
3 changed files
with
6 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,9 @@ | ||
[pytest] | ||
env = | ||
EDSL_RUN_MODE=development-testrun | ||
EDSL_DATABASE_PATH=sqlite:///:memory: | ||
EDSL_API_TIMEOUT=60 | ||
EDSL_BACKOFF_START_SEC=1 | ||
EDSL_BACKOFF_MAX_SEC=60 | ||
EDSL_DEFAULT_MODEL=gpt-4o | ||
EDSL_MAX_ATTEMPTS=5 | ||
EDSL_FETCH_TOKEN_PRICES=False | ||
EDSL_SERVICE_RPM_BASELINE=250 | ||
EDSL_SERVICE_TPM_BASELINE=10000000000 | ||
EXPECTED_PARROT_URL=http://localhost:8000 | ||
EDSL_MAX_CONCURRENT_TASKS=1000 | ||
EDSL_OPEN_EXCEPTION_REPORT_URL=False | ||
|
||
# -- required by EDSL | ||
filterwarnings = | ||
ignore::DeprecationWarning | ||
|
||
# Notes: | ||
# - Look at conftest.py for the `set_env_vars` fixture. | ||
# This fixture sets env vars for the duration of one test. | ||
# - To run integration tests, you have to have also have a .env with your LLM provider keys stored locally. |