From f11ec5412f66e780f81ec6e9b723b87cecb26a70 Mon Sep 17 00:00:00 2001 From: Radek Simko Date: Tue, 22 Feb 2022 11:02:57 +0000 Subject: [PATCH] ci: bump timeout for E2E tests (#50) --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 41eaa8a..a33622c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,7 +46,7 @@ jobs: name: Test needs: build runs-on: ${{ matrix.os }} - timeout-minutes: 20 + timeout-minutes: 25 strategy: fail-fast: false matrix: @@ -68,8 +68,8 @@ jobs: go test -v -race ./... - name: E2E tests - timeout-minutes: 15 + timeout-minutes: 20 env: E2E_TESTING: 1 run: | - go test -timeout=15m -v ./... + go test -timeout=20m -v ./...