From ae6ba0174b4e7017b86e30ad5aa6a79d84656142 Mon Sep 17 00:00:00 2001 From: Vinu K Date: Tue, 20 Jan 2026 13:54:13 +0000 Subject: [PATCH] test: Increase go test timeout Increase the timeout of go test and GitHub Action Signed-off-by: Vinu K --- .github/workflows/integration-tests.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index a5c05ed..089f0ab 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -12,7 +12,7 @@ jobs: integration-test: name: Run Integration Tests runs-on: ubuntu-latest - timeout-minutes: 20 + timeout-minutes: 30 steps: - name: Checkout code diff --git a/Makefile b/Makefile index 821708d..ecaf6d5 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ run: gvs cg test-integration: @echo "Running integration tests..." - go test -v -count=1 ./internal/api -run TestCallgraphIntegration -timeout 15m + go test -v -count=1 ./internal/api -run TestCallgraphIntegration -timeout 25m .PHONY: gvs