Skip to content

Commit

Permalink
Shuffle the tests, just in case (#2272)
Browse files Browse the repository at this point in the history
  • Loading branch information
jvoisin committed Mar 23, 2023
1 parent 3a6d2dc commit 17e0cd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Test
continue-on-error: ${{contains(matrix.go_version, 'beta') || contains(matrix.go_version, 'rc')}}
run: go test -race -cover ./... -v
run: go test -shuffle=on -race -cover ./... -v

js:
name: Build JS bundle
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -29,7 +29,7 @@ watch: ##@Development Start Go tests in watch mode (re-run when code changes)
.PHONY: watch

test: ##@Development Run Go tests
go test -race ./...
go test -race -shuffle=on ./...
.PHONY: test

testall: test ##@Development Run Go and JS tests
Expand Down

0 comments on commit 17e0cd5

Please sign in to comment.