Skip to content

Commit

Permalink
feat(ci): do not retry flaky tests (#2875)
Browse files Browse the repository at this point in the history
Reporting flaky tests is important so they can be fixed.
Also this allows to discover data races which else might go completely unnoticed.
  • Loading branch information
leonklingele committed Feb 23, 2024
1 parent 26346d6 commit 8c413d0
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 8c413d0

Please sign in to comment.