From 8c413d0652330ee2b05be1eb889696863b2ae4d7 Mon Sep 17 00:00:00 2001 From: leonklingele Date: Fri, 23 Feb 2024 09:12:00 +0100 Subject: [PATCH] feat(ci): do not retry flaky tests (#2875) Reporting flaky tests is important so they can be fixed. Also this allows to discover data races which else might go completely unnoticed. --- .github/workflows/test.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 276cb6563d..595d4a2c4f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,9 +30,4 @@ jobs: with: go-version: ${{ matrix.go-version }} - - name: Run Test - uses: nick-fields/retry@v3 - with: - max_attempts: 3 - timeout_minutes: 15 - command: go test ./... -v -race -count=1 + - run: go test ./... -v -race -count=1