Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test-integrations-ai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ jobs:
run: |
set -x # print commands that are executed
./scripts/runtox.sh "py${{ matrix.python-version }}-huggingface_hub"
- name: Test litellm
run: |
set -x # print commands that are executed
./scripts/runtox.sh "py${{ matrix.python-version }}-litellm"
- name: Test openai-base
run: |
set -x # print commands that are executed
Expand Down
3 changes: 3 additions & 0 deletions scripts/populate_tox/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,9 @@
"package": "launchdarkly-server-sdk",
"num_versions": 2,
},
"litellm": {
"package": "litellm",
},
"litestar": {
"package": "litestar",
"deps": {
Expand Down
7 changes: 4 additions & 3 deletions scripts/populate_tox/package_dependencies.jsonl

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions scripts/populate_tox/releases.jsonl

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions scripts/split_tox_gh_actions/split_tox_gh_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
"cohere",
"google_genai",
"huggingface_hub",
"litellm",
"openai-base",
"openai-notiktoken",
],
Expand Down
13 changes: 13 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,12 @@ envlist =
{py3.9,py3.13,py3.14,py3.14t}-huggingface_hub-v1.7.2
{py3.9,py3.13,py3.14,py3.14t}-huggingface_hub-latest

{py3.9,py3.12,py3.13}-litellm-v1.77.7
{py3.9,py3.12,py3.13}-litellm-v1.79.3
{py3.9,py3.12,py3.13}-litellm-v1.81.16
{py3.9,py3.12,py3.13}-litellm-v1.82.6
{py3.9,py3.12,py3.13}-litellm-latest

{py3.8,py3.11,py3.12}-openai-base-v1.0.1
{py3.8,py3.12,py3.13}-openai-base-v1.109.1
{py3.9,py3.13,py3.14,py3.14t}-openai-base-v2.29.0
Expand Down Expand Up @@ -533,6 +539,12 @@ deps =
huggingface_hub: responses
huggingface_hub: pytest-httpx

litellm-v1.77.7: litellm==1.77.7
litellm-v1.79.3: litellm==1.79.3
litellm-v1.81.16: litellm==1.81.16
litellm-v1.82.6: litellm==1.82.6
litellm-latest: litellm==1.82.6

openai-base-v1.0.1: openai==1.0.1
openai-base-v1.109.1: openai==1.109.1
openai-base-v2.29.0: openai==2.29.0
Expand Down Expand Up @@ -975,6 +987,7 @@ setenv =
langchain-notiktoken: _TESTPATH=tests/integrations/langchain
langgraph: _TESTPATH=tests/integrations/langgraph
launchdarkly: _TESTPATH=tests/integrations/launchdarkly
litellm: _TESTPATH=tests/integrations/litellm
litestar: _TESTPATH=tests/integrations/litestar
loguru: _TESTPATH=tests/integrations/loguru
mcp: _TESTPATH=tests/integrations/mcp
Expand Down
Loading