From 2a37fd955ec56fb2e03ff533dd51b4097960e47f Mon Sep 17 00:00:00 2001 From: Natalie Bunduwongse Date: Sat, 16 Nov 2024 10:11:06 +1300 Subject: [PATCH] test: remove ui test install dependency shell --- .github/workflows/ui-tests.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index 57c8b76c..a9a1cb42 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -88,14 +88,12 @@ jobs: python-version: "3.10" - name: Install dependencies (Windows) if: ${{ matrix.targetPlatform == 'StandaloneWindows64' }} - shell: pwsh run: | if (${{ matrix.targetPlatform }} -eq "StandaloneWindows64") { pip install -r "sample/Tests/requirements-desktop.txt" } - name: Install dependencies (Mac) if: ${{ matrix.targetPlatform != 'StandaloneWindows64' }} - shell: bash run: | if [[ "${{ matrix.targetPlatform }}" == "StandaloneOSX" ]]; then pip install -r "sample/Tests/requirements-desktop.txt"