mirror of
https://github.com/tendermint/tendermint.git
synced 2026-04-15 05:07:00 +00:00
More changes: - remove Client interface (reason: empty) - introduce HTTPClient interface, which can be used for both ClientURI and ClientJSONRPC clients (so our users don't have to create their own) (Refs #8) - rename integration tests script to `integration_test.sh` - do not update deps on `get_deps`
16 lines
281 B
Makefile
16 lines
281 B
Makefile
PACKAGES=$(shell go list ./...)
|
|
|
|
all: 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
|