From 706ecc3f8a7290b5e2749afe706ebf259f0bd7c5 Mon Sep 17 00:00:00 2001 From: Erol444 Date: Mon, 5 Feb 2024 11:43:37 +0200 Subject: [PATCH] Try to fix windows tests --- .github/workflows/test_install_requirements.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_install_requirements.yml b/.github/workflows/test_install_requirements.yml index 56ba8e41f..45b1ace27 100644 --- a/.github/workflows/test_install_requirements.yml +++ b/.github/workflows/test_install_requirements.yml @@ -91,9 +91,18 @@ - name: Download chocolatey shell: pwsh run: Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) - - name: Install dependencies + - name: Install cmake dependency shell: pwsh - run: choco install cmake git python --version 3.10 pycharm-community -y + run: choco install cmake -y + - name: Install git dependency + shell: pwsh + run: choco install git -y + - name: Install python dependency + shell: pwsh + run: choco install python --version 3.10 -y + - name: Install pycharm-community dependency + shell: pwsh + run: choco install pycharm-community -y - name: Install requrirements run: | python install_requirements.py