Skip to content

Commit

Permalink
chore: restrict to 1 parallel test at once (#2146)
Browse files Browse the repository at this point in the history
Seeing some memory issues on the GitHub actions workers so disabling parallel until we can learn more
  • Loading branch information
dnwe committed Feb 13, 2022
1 parent 358c6b6 commit 9298f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ default: fmt get update test lint

GO := go
GOBUILD := CGO_ENABLED=0 $(GO) build $(BUILD_FLAG)
GOTEST := $(GO) test -gcflags='-l' -p 1 -race -timeout 10m -coverprofile=profile.out -covermode=atomic
GOTEST := $(GO) test -gcflags='-l' -p 1 -parallel 1 -race -timeout 10m -coverprofile=profile.out -covermode=atomic

FILES := $(shell find . -name '*.go' -type f -not -name '*.pb.go' -not -name '*_generated.go' -not -name '*_test.go')
TESTS := $(shell find . -name '*.go' -type f -not -name '*.pb.go' -not -name '*_generated.go' -name '*_test.go')
Expand Down

0 comments on commit 9298f40

Please sign in to comment.