Skip to content

Commit 953d069

Browse files
committed
Fixed wheel package installations on Windows.
1 parent 05e5d1f commit 953d069

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ApplicationTesting.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,11 +220,16 @@ jobs:
220220
python -m pip install --disable-pip-version-check ${{ inputs.requirements }}
221221
fi
222222
223-
- name: 🔧 Install wheel from artifact
223+
- name: 🔧 Install wheel from artifact (Ubuntu/macOS)
224+
if: ( matrix.system != 'windows' && matrix.system != 'windows-arm' )
224225
run: |
225-
ls -l install
226226
python -m pip install --disable-pip-version-check -U install/*.whl
227227
228+
- name: 🔧 Install wheel from artifact (Windows)
229+
if: ( matrix.system == 'windows' || matrix.system == 'windows-arm' )
230+
run: |
231+
python -m pip install -v --disable-pip-version-check (Get-Item .\install\*.whl).FullName
232+
228233
- name: ✅ Run application tests (Ubuntu/macOS)
229234
if: ( matrix.system != 'windows' && matrix.system != 'windows-arm' )
230235
run: |

0 commit comments

Comments
 (0)