From c0611659e1dcf957518cca6440fe321f92279790 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Thu, 12 Dec 2024 17:36:40 +0100 Subject: [PATCH] chor: increase go test timeout --- .github/workflows/benchmark.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index f7c3824d..9decb8a1 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -120,7 +120,7 @@ jobs: cd "$d" echo "Bench dir: $d" - go test ./... -v -benchmem -run=^$ -bench . | tee -a ../output.txt + go test ./... -timeout 120s -v -benchmem -run=^$ -bench . | tee -a ../output.txt cd .. done shell: bash