runs in-tendermint

This commit is contained in:
rigelrozanski
2017-01-12 00:07:56 -05:00
parent 056106a43a
commit 73c7edd588
2 changed files with 127 additions and 9 deletions
+9 -2
View File
@@ -2,11 +2,13 @@
all: test install
install: get_deps
NOVENDOR = go list github.com/tendermint/basecoin/... | grep -v /vendor/
install:
go install github.com/tendermint/basecoin/cmd/...
test:
go test github.com/tendermint/basecoin/...
go test --race `${NOVENDOR}`
go run tests/tmsp/*.go
get_deps:
@@ -14,3 +16,8 @@ get_deps:
update_deps:
go get -d -u github.com/tendermint/basecoin/...
get_vendor_deps:
go get github.com/Masterminds/glide
glide install