Skip to content
Merged
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
24 changes: 12 additions & 12 deletions .github/workflows/test-integrations-ai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ jobs:
run: |
set -x # print commands that are executed
./scripts/runtox.sh "py${{ matrix.python-version }}-cohere"
- name: Test google_genai
run: |
set -x # print commands that are executed
./scripts/runtox.sh "py${{ matrix.python-version }}-google_genai"
- name: Test huggingface_hub
run: |
set -x # print commands that are executed
./scripts/runtox.sh "py${{ matrix.python-version }}-huggingface_hub"
- name: Test langchain-base
run: |
set -x # print commands that are executed
Expand All @@ -66,6 +74,10 @@ jobs:
run: |
set -x # print commands that are executed
./scripts/runtox.sh "py${{ matrix.python-version }}-langchain-notiktoken"
- name: Test langgraph
run: |
set -x # print commands that are executed
./scripts/runtox.sh "py${{ matrix.python-version }}-langgraph"
- name: Test litellm
run: |
set -x # print commands that are executed
Expand All @@ -78,22 +90,10 @@ jobs:
run: |
set -x # print commands that are executed
./scripts/runtox.sh "py${{ matrix.python-version }}-openai-notiktoken"
- name: Test langgraph
run: |
set -x # print commands that are executed
./scripts/runtox.sh "py${{ matrix.python-version }}-langgraph"
- name: Test google_genai
run: |
set -x # print commands that are executed
./scripts/runtox.sh "py${{ matrix.python-version }}-google_genai"
- name: Test openai_agents
run: |
set -x # print commands that are executed
./scripts/runtox.sh "py${{ matrix.python-version }}-openai_agents"
- name: Test huggingface_hub
run: |
set -x # print commands that are executed
./scripts/runtox.sh "py${{ matrix.python-version }}-huggingface_hub"
- name: Generate coverage XML (Python 3.6)
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
run: |
Expand Down
10 changes: 8 additions & 2 deletions scripts/populate_tox/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,10 @@
"*": ["pytest-asyncio", "tiktoken"],
"<1.55": ["httpx<0.28"],
},
"python": ">=3.8",
"python": {
">0.0,<2.3": ">=3.8",
">=2.3": ">=3.9",
},
},
"openai-notiktoken": {
"package": "openai",
Expand All @@ -249,7 +252,10 @@
"*": ["pytest-asyncio"],
"<1.55": ["httpx<0.28"],
},
"python": ">=3.8",
"python": {
">0.0,<2.3": ">=3.8",
">=2.3": ">=3.9",
},
},
"openai_agents": {
"package": "openai-agents",
Expand Down
Loading