Skip to content

Commit

Permalink
chore: restrict to 1 testbinary at once
Browse files Browse the repository at this point in the history
  • Loading branch information
dnwe committed Feb 13, 2022
1 parent 06513c1 commit 3cbe930
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' -race -timeout 10m -coverprofile=profile.out -covermode=atomic
GOTEST := $(GO) test -gcflags='-l' -p 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 3cbe930

Please sign in to comment.