Skip to content

Commit

Permalink
remove use of cache for install test
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Parsons committed May 1, 2024
1 parent 1bb560b commit 1065317
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/install_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 1065317

Please sign in to comment.