Remove race-test command from Makefile

This commit is contained in:
c-bata 2018-10-25 19:10:26 +09:00
parent 3f8dafd9e8
commit 0ad87c6ff6
2 changed files with 2 additions and 7 deletions

View File

@ -22,4 +22,3 @@ script:
- diff <(goimports -d .) <(echo -n "")
- make lint
- make test
- make race-test

View File

@ -19,18 +19,14 @@ lint: ## Run golint and go vet.
@go vet .
.PHONY: test
test: ## Run the tests.
@go test .
test: ## Run the tests with race condition checking.
@go test -race .
.PHONY: coverage
cover: ## Run the tests.
@go test -coverprofile=coverage.o
@go tool cover -func=coverage.o
.PHONY: race-test
race-test: ## Checking the race condition.
@go test -race .
.PHONY: help
help: ## Show help text
@echo "Commands:"