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:
50
50
- name : Install pipenv
51
51
run : curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
52
52
- name : Install dependencies
53
+ shell : pwsh
53
54
run : |
54
55
mv ./__tests__/data/Pipfile.lock .
55
56
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
+ }
57
62
58
63
python-poetry-dependencies-caching :
59
64
name : Test poetry (Python ${{ matrix.python-version}}, ${{ matrix.os }})
@@ -115,7 +120,12 @@ jobs:
115
120
- name : Install pipenv
116
121
run : curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
117
122
- name : Install dependencies
123
+ shell : pwsh
118
124
run : |
119
125
mv ./__tests__/data/Pipfile.lock .
120
126
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