From d86d2d9744bc668d74998e1734f2f38f12caa94d Mon Sep 17 00:00:00 2001 From: Shahar Naveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Wed, 16 Jul 2025 14:44:41 +0300 Subject: [PATCH] CI: Increase windows timeout from 40 -> 45 --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c5e9344956c..89148beea40 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -113,7 +113,7 @@ jobs: RUST_BACKTRACE: full name: Run rust tests runs-on: ${{ matrix.os }} - timeout-minutes: ${{ contains(matrix.os, 'windows') && 40 || 30 }} + timeout-minutes: ${{ contains(matrix.os, 'windows') && 45 || 30 }} strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest] @@ -239,7 +239,7 @@ jobs: RUST_BACKTRACE: full name: Run snippets and cpython tests runs-on: ${{ matrix.os }} - timeout-minutes: ${{ contains(matrix.os, 'windows') && 40 || 30 }} + timeout-minutes: ${{ contains(matrix.os, 'windows') && 45 || 30 }} strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest]