Skip to content
This repository was archived by the owner on Dec 11, 2025. It is now read-only.
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
1 change: 0 additions & 1 deletion .github/actions/setup-python-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ runs:
working-directory: ${{ inputs.working_directory }}
- uses: actions/setup-python@v4
with:
cache: 'poetry'
python-version: ${{ inputs.python_version }}
- name: setup venv
run: |
Expand Down
9 changes: 1 addition & 8 deletions .github/workflows/all-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,9 @@ jobs:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: use correct env
run: poetry env use ${{ matrix.python-version }}
- name: Install dependencies if venv is not cached
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
- name: Install dependencies
run: poetry install -E "create rag openai" --with test && poetry run python -m nltk.downloader all
- name: Test with pytest
env:
Expand Down
Loading