Skip to content

Commit

Permalink
Bandaid for flaky websocket tests
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Coffman <[email protected]>
  • Loading branch information
StevenACoffman committed May 3, 2023
1 parent 395c362 commit c839b6c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,14 @@ jobs:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Core tests
uses: nick-fields/retry@v2
with:
max_attempts: 3
command: go mod download && go test -race ./...
- run: go mod download && go test -race ./...
- run: cd _examples && go mod download && go test -race ./...
- name: Example tests
uses: nick-fields/retry@v2
with:
max_attempts: 3
command: cd _examples && go mod download && go test -race ./...

0 comments on commit c839b6c

Please sign in to comment.