diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index 57c8b76c..3dfa0359 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -88,14 +88,9 @@ 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" - } + run: 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"