Fix Python cache for all pytest CI jobs (#9415)

This commit is contained in:
J. Nick Koston 2025-07-09 14:43:49 -10:00 committed by GitHub
parent 97dd96b60d
commit 926e4fa3e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -224,6 +224,12 @@ jobs:
uses: codecov/codecov-action@v5.4.3
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Save Python virtual environment cache
if: github.ref == 'refs/heads/dev' && (matrix.os == 'windows-latest' || matrix.os == 'macOS-latest')
uses: actions/cache/save@v4.2.3
with:
path: venv
key: ${{ runner.os }}-${{ matrix.python-version }}-venv-${{ needs.common.outputs.cache-key }}
integration-tests:
name: Run integration tests