diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c34fd3bb2..e138c3e7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,18 +52,18 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} - - name: Venv cache - id: venv-cache - uses: actions/cache@v3 - with: - path: .env - key: venv-${{ matrix.os }}-${{ steps.pythonsetup.outputs.python-version }}-${{ hashFiles('requirements*') }} - - name: Pytest durations cache - uses: actions/cache@v3 - with: - path: .test_durations - key: test_durations-${{ matrix.os }}-${{ steps.pythonsetup.outputs.python-version }}-${{ matrix.job }}-${{ github.run_id }} - restore-keys: test_durations-0- + # - name: Venv cache + # id: venv-cache + # uses: actions/cache@v3 + # with: + # path: .env + # key: venv-${{ matrix.os }}-${{ steps.pythonsetup.outputs.python-version }}-${{ hashFiles('requirements*') }} + # - name: Pytest durations cache + # uses: actions/cache@v3 + # with: + # path: .test_durations + # key: test_durations-${{ matrix.os }}-${{ steps.pythonsetup.outputs.python-version }}-${{ matrix.job }}-${{ github.run_id }} + # restore-keys: test_durations-0- - name: Setup if: steps.venv-cache.outputs.cache-hit != 'true' run: |