do not run complete test suite on `make`

bad dev experience
This commit is contained in:
Anton Kaliaev 2018-03-08 18:55:14 +04:00
parent 60a64af28d
commit 018da09f14
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 5 additions and 3 deletions

View File

@ -5,7 +5,7 @@ PACKAGES=$(shell go list ./... | grep -v '/vendor/')
BUILD_TAGS?=tendermint BUILD_TAGS?=tendermint
BUILD_FLAGS = -ldflags "-X github.com/tendermint/tendermint/version.GitCommit=`git rev-parse --short=8 HEAD`" BUILD_FLAGS = -ldflags "-X github.com/tendermint/tendermint/version.GitCommit=`git rev-parse --short=8 HEAD`"
all: check build test_integrations install all: check build test install
check: check_tools ensure_deps check: check_tools ensure_deps
@ -186,4 +186,6 @@ metalinter_all:
# To avoid unintended conflicts with file names, always add to .PHONY # To avoid unintended conflicts with file names, always add to .PHONY
# unless there is a reason not to. # unless there is a reason not to.
# https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html # https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html
.PHONY: check build build_race dist install check_tools get_tools update_tools get_vendor_deps draw_depsbuild_test_docker_image test_cover test_apps test_persistence test_p2p test test_race test_libs test_integrations test_release test100 vagrant_test fmt .PHONY: check build build_race dist install check_tools get_tools update_tools
get_vendor_deps draw_deps test_cover test_apps test_persistence test_p2p test
test_race test_libs test_integrations test_release test100 vagrant_test fmt