From 8fd43a3474bc0087bce299ad3d36f5a44db2dd28 Mon Sep 17 00:00:00 2001 From: Or Geva Date: Fri, 3 Nov 2023 08:13:08 +0200 Subject: [PATCH] Python - Set Python3 V3.11 for tests --- .github/workflows/test.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1388510aa..f76ef44d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: - name: Setup Python3 uses: actions/setup-python@v4 with: - python-version: "3.x" + python-version: "3.11" - name: Setup NodeJS uses: actions/setup-node@v3 with: @@ -39,7 +39,7 @@ jobs: - name: Install run: npm i --ignore-scripts - + # Make sure no new dependencies were installed after running 'npm i' - name: Make sure branch is clean run: git diff --exit-code @@ -73,4 +73,3 @@ jobs: # Run tests with Virtual frame buffer to allow running VS-Code without a display run: xvfb-run npm t if: runner.os == 'Linux' -