File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -50,10 +50,15 @@ jobs:
5050 - name : Install pipenv
5151 run : curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
5252 - name : Install dependencies
53+ shell : pwsh
5354 run : |
5455 mv ./__tests__/data/Pipfile.lock .
5556 mv ./__tests__/data/Pipfile .
56- pipenv install --keep-outdated --python 3
57+ if (${{ matrix.python-version }} -Match "pypy") {
58+ pipenv install --keep-outdated --python ${{ matrix.python-version }}
59+ } else {
60+ pipenv install --keep-outdated --python pypy
61+ }
5762
5863 python-poetry-dependencies-caching :
5964 name : Test poetry (Python ${{ matrix.python-version}}, ${{ matrix.os }})
@@ -115,7 +120,12 @@ jobs:
115120 - name : Install pipenv
116121 run : curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
117122 - name : Install dependencies
123+ shell : pwsh
118124 run : |
119125 mv ./__tests__/data/Pipfile.lock .
120126 mv ./__tests__/data/Pipfile .
121- pipenv install --keep-outdated --python 3
127+ if (${{ matrix.python-version }} -Match "pypy") {
128+ pipenv install --keep-outdated --python ${{ matrix.python-version }}
129+ } else {
130+ pipenv install --keep-outdated --python pypy
131+ }
You can’t perform that action at this time.
0 commit comments