From 10653171cc0c3d61b6cbcedc1347331916830cdb Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Wed, 1 May 2024 14:37:54 -0500 Subject: [PATCH] remove use of cache for install test --- .github/workflows/install_test.yaml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/install_test.yaml b/.github/workflows/install_test.yaml index 49d8ef700a..124c81a12f 100644 --- a/.github/workflows/install_test.yaml +++ b/.github/workflows/install_test.yaml @@ -28,22 +28,12 @@ jobs: python-version: ${{ matrix.python_version }} cache: 'pip' cache-dependency-path: 'pyproject.toml' - - uses: actions/cache@v3 - id: cache - with: - path: ${{ env.pythonLocation }} - key: ${{ matrix.os- }}-${{ matrix.python_version }}-install-${{ env.pythonLocation }}-${{ hashFiles('**/pyproject.toml') }}-v01 - name: Build featuretools package run: | make package - - name: Install complete version of featuretools from sdist (not using cache) - if: steps.cache.outputs.cache-hit != 'true' + - name: Install complete version of featuretools from sdist run: | python -m pip install "unpacked_sdist/[complete]" - - name: Install complete version of featuretools from sdist (using cache) - if: steps.cache.outputs.cache-hit == 'true' - run: | - python -m pip install "unpacked_sdist/[complete]" --no-deps - name: Test by importing packages run: | python -c "import premium_primitives"