From 953d0698c96414fa821aaee85cd186fb553ac5a1 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Sat, 4 Oct 2025 23:48:00 +0200 Subject: [PATCH] Fixed wheel package installations on Windows. --- .github/workflows/ApplicationTesting.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ApplicationTesting.yml b/.github/workflows/ApplicationTesting.yml index 1c3ef4d..b8d94e4 100644 --- a/.github/workflows/ApplicationTesting.yml +++ b/.github/workflows/ApplicationTesting.yml @@ -220,11 +220,16 @@ jobs: python -m pip install --disable-pip-version-check ${{ inputs.requirements }} fi - - name: 🔧 Install wheel from artifact + - name: 🔧 Install wheel from artifact (Ubuntu/macOS) + if: ( matrix.system != 'windows' && matrix.system != 'windows-arm' ) run: | - ls -l install python -m pip install --disable-pip-version-check -U install/*.whl + - name: 🔧 Install wheel from artifact (Windows) + if: ( matrix.system == 'windows' || matrix.system == 'windows-arm' ) + run: | + python -m pip install -v --disable-pip-version-check (Get-Item .\install\*.whl).FullName + - name: ✅ Run application tests (Ubuntu/macOS) if: ( matrix.system != 'windows' && matrix.system != 'windows-arm' ) run: |