Files
tendermint/Makefile
Anton Kaliaev d43e3db978 fix circleci
2017-03-07 19:28:00 +04:00

16 lines
290 B
Makefile

PACKAGES=$(shell go list ./...)
all: get_deps test
test:
@echo "--> Running go test --race"
@go test --race $(PACKAGES)
@echo "--> Running integration tests"
@bash ./test/integration_test.sh
get_deps:
@echo "--> Running go get"
@go get -v -d $(PACKAGES)
.PHONY: all test get_deps