From 5b0b91e5bea5ef01b150df7985ac865f6c124ada Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Tue, 16 Dec 2025 23:03:15 +0100 Subject: [PATCH] ci(gotest): reduce noise on test timeout panics add GOTRACEBACK=single to show only one goroutine stack instead of all when a test timeout panic occurs. this makes CI output much cleaner when tests hang. --- .github/workflows/gotest.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/gotest.yml b/.github/workflows/gotest.yml index 3c64ee872..971f440ef 100644 --- a/.github/workflows/gotest.yml +++ b/.github/workflows/gotest.yml @@ -19,6 +19,7 @@ jobs: runs-on: ${{ fromJSON(github.repository == 'ipfs/kubo' && '["self-hosted", "linux", "x64", "2xlarge"]' || '"ubuntu-latest"') }} timeout-minutes: 15 env: + GOTRACEBACK: single # reduce noise on test timeout panics TEST_DOCKER: 0 TEST_FUSE: 0 TEST_VERBOSE: 1 @@ -112,6 +113,7 @@ jobs: runs-on: ${{ fromJSON(github.repository == 'ipfs/kubo' && '["self-hosted", "linux", "x64", "2xlarge"]' || '"ubuntu-latest"') }} timeout-minutes: 15 env: + GOTRACEBACK: single # reduce noise on test timeout panics TEST_VERBOSE: 1 GIT_PAGER: cat IPFS_CHECK_RCMGR_DEFAULTS: 1