From f264df55b97773b453a44d6efc253fa4d622cc08 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Wed, 27 Jul 2022 13:03:48 -0400 Subject: [PATCH] Always run with race and shuffle --- .github/workflows/test.yml | 2 +- Makefile | 10 +--------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 43127a6..27c8312 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,4 +22,4 @@ jobs: with: go-version: '1.17' - - run: 'make test-acc' + - run: 'make test' diff --git a/Makefile b/Makefile index 82e814d..b95f7a7 100644 --- a/Makefile +++ b/Makefile @@ -13,18 +13,10 @@ # limitations under the License. test: - @go test \ - -count=1 \ - -short \ - -timeout=5m \ - ./... -.PHONY: test - -test-acc: @go test \ -count=1 \ -race \ -shuffle=on \ -timeout=10m \ ./... -.PHONY: test-acc +.PHONY: test