1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-11 23:01:22 +00:00

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.
This commit is contained in:
leonklingele 2024-02-23 09:12:00 +01:00 committed by GitHub
parent 26346d6908
commit 8c413d0652
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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