Skip to content

Commit

Permalink
fix pipenv checks
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-shibanov committed Apr 2, 2022
1 parent 9c644ca commit 2c5aeb5
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/e2e-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: 'pipenv'
- name: Install pipenv
run: pipx install pipenv
shell: pwsh
run: |
pipx install pipenv
$pythonVersion = ("${{ matrix.python-version }}" -Match "pypy") ? "pypy" : "${{ matrix.python-version }}"
pipenv --python $pythonVersion
- name: Install dependencies
run: pipenv install numpy

Expand Down Expand Up @@ -110,6 +114,9 @@ jobs:
cache: 'pipenv'
cache-dependency-path: '**/requirements-linux.txt'
- name: Install pipenv
run: pipx install pipenv
run: |
pipx install pipenv
$pythonVersion = ("${{ matrix.python-version }}" -Match "pypy") ? "pypy" : "${{ matrix.python-version }}"
pipenv --python $pythonVersion
- name: Install dependencies
run: pipenv install numpy

0 comments on commit 2c5aeb5

Please sign in to comment.