From 23fd81e59f277e7ef4ac6d663c217b16120c808f Mon Sep 17 00:00:00 2001 From: Kyle Montemayor Date: Thu, 6 Nov 2025 10:43:05 -0800 Subject: [PATCH] Bump unit test and integration test timeout :( --- .github/workflows/on-pr-comment.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/on-pr-comment.yml b/.github/workflows/on-pr-comment.yml index 28565cd06..2bdb22af6 100644 --- a/.github/workflows/on-pr-comment.yml +++ b/.github/workflows/on-pr-comment.yml @@ -42,7 +42,8 @@ jobs: unit-test: if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, '/unit_test') }} runs-on: ubuntu-latest - timeout-minutes: 55 + # TODO(kmonte): Reduce this :( + timeout-minutes: 120 steps: - name: Run Unit Tests uses: snapchat/gigl/.github/actions/run-command-on-pr@main @@ -65,7 +66,8 @@ jobs: integration-test: if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, '/integration_test') }} runs-on: ubuntu-latest - timeout-minutes: 70 # Tests as of 2025-05-16 are taking ~50 mins to complete, 40% buffer + # TODO(kmonte): Reduce this :( + timeout-minutes: 120 steps: - name: Run Integration Tests uses: snapchat/gigl/.github/actions/run-command-on-pr@main