Skip to content

Commit

Permalink
Merge pull request #171 from linkernetworks/johnlin/remove-race
Browse files Browse the repository at this point in the history
Remove test race
  • Loading branch information
John-Lin authored Jul 25, 2018
2 parents 9237ea8 + 6308713 commit 776d272
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ src.build:

.PHONY: src.test
src.test:
$(GO) test -v -race ./src/...
$(GO) test -v ./src/...

.PHONY: src.install
src.install:
Expand All @@ -58,7 +58,7 @@ src.install:
.PHONY: src.test-coverage
src.test-coverage:
$(MKDIR_P) $(BUILD_FOLDER)/src/
$(GO) test -v -race -coverprofile=$(BUILD_FOLDER)/src/coverage.txt -covermode=atomic ./src/...
$(GO) test -v -coverprofile=$(BUILD_FOLDER)/src/coverage.txt -covermode=atomic ./src/...
$(GO) tool cover -html=$(BUILD_FOLDER)/src/coverage.txt -o $(BUILD_FOLDER)/src/coverage.html

.PHONY: src.test-coverage-minikube
Expand Down

0 comments on commit 776d272

Please sign in to comment.