Skip to content

Commit 04971ba

Browse files
authored
Fixing CI hang, again (#1201)
1 parent a674bdf commit 04971ba

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
runs-on: ubuntu-latest
105105
strategy:
106106
matrix:
107-
python-version: [3.11, 3.13] # Our min and max supported Python versions
107+
python-version: [3.12, 3.13] # Our min and max supported Python versions, skipping 3.11 to avoid https://github.com/BerriAI/litellm/issues/16518
108108
steps:
109109
- uses: actions/checkout@v5
110110
- uses: astral-sh/setup-uv@v7

tests/test_agents.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1102,6 +1102,7 @@ async def test_continuation(self) -> None:
11021102
assert len(state.docs.docs) > trial_count, "Search was unable to continue"
11031103

11041104

1105+
@pytest.mark.timeout(60 * 7) # Extended from global 5-min timeout
11051106
@pytest.mark.asyncio
11061107
async def test_index_build_concurrency(agent_test_settings: Settings) -> None:
11071108

0 commit comments

Comments
 (0)