Skip to content

Commit

Permalink
Enable test shuffling
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardGomezEscandell committed Sep 15, 2023
1 parent 0c9d09f commit d27afa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -212,14 +212,14 @@ jobs:
if: always() && !cancelled()
working-directory: ${{ matrix.subproject }}
run: |
go test -coverpkg=./... -coverprofile=/tmp/coverage.out -covermode=count ./... -tags=gowslmock
go test -shuffle -coverpkg=./... -coverprofile=/tmp/coverage.out -covermode=count ./... -tags=gowslmock
- name: Run tests (with race detector)
shell: bash
# -race not supported on Windows
if: matrix.os != 'windows'
working-directory: ${{ matrix.subproject }}
run: |
go test ./... -race -tags=gowslmock
go test -shuffle ./... -race -tags=gowslmock
#- name: Upload coverage to Codecov
# uses: codecov/codecov-action@v3
# with:
Expand Down

0 comments on commit d27afa1

Please sign in to comment.