Skip to content
This repository was archived by the owner on Dec 11, 2025. It is now read-only.

Commit 9d30e21

Browse files
committed
Merge branch 'main' into ENG-3998_support-kimi-k2-thinking
2 parents 88fb8a2 + 447acce commit 9d30e21

2 files changed

Lines changed: 1 addition & 9 deletions

File tree

.github/actions/setup-python-env/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ runs:
2222
working-directory: ${{ inputs.working_directory }}
2323
- uses: actions/setup-python@v4
2424
with:
25-
cache: 'poetry'
2625
python-version: ${{ inputs.python_version }}
2726
- name: setup venv
2827
run: |

.github/workflows/all-sdk-tests.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,9 @@ jobs:
4141
virtualenvs-create: true
4242
virtualenvs-in-project: true
4343
installer-parallel: true
44-
- name: Load cached venv
45-
id: cached-poetry-dependencies
46-
uses: actions/cache@v4
47-
with:
48-
path: .venv
49-
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
5044
- name: use correct env
5145
run: poetry env use ${{ matrix.python-version }}
52-
- name: Install dependencies if venv is not cached
53-
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
46+
- name: Install dependencies
5447
run: poetry install -E "create rag openai" --with test && poetry run python -m nltk.downloader all
5548
- name: Test with pytest
5649
env:

0 commit comments

Comments
 (0)