tendermint/Makefile

16 lines
290 B
Makefile
Raw Normal View History

PACKAGES=$(shell go list ./...)
2016-06-23 17:36:59 -07:00
2017-03-07 07:20:19 -08:00
all: get_deps test
2016-06-23 17:36:59 -07:00
test:
@echo "--> Running go test --race"
@go test --race $(PACKAGES)
@echo "--> Running integration tests"
@bash ./test/integration_test.sh
2016-06-23 17:36:59 -07:00
get_deps:
@echo "--> Running go get"
@go get -v -d $(PACKAGES)
.PHONY: all test get_deps