feat: switch glide to govendor. (#186)

* feat: switch glide to govendor.

* fix: testing
This commit is contained in:
Bo-Yi Wu
2017-02-19 15:04:00 +08:00
committed by GitHub
parent 3f4485edf7
commit 23bd0d0c56
732 changed files with 252501 additions and 52 deletions

25
vendor/gopkg.in/appleboy/gofight.v2/Makefile generated vendored Normal file
View File

@@ -0,0 +1,25 @@
.PHONY: all example test
TARGETS_NOVENDOR := $(shell glide novendor)
export PROJECT_PATH = /go/src/github.com/appleboy/gofight
all: install test
install:
go get -t -d -v ./...
example:
cd example && go test -v -cover .
test: example
go test -v -cover .
docker_test: clean
docker run --rm \
-v $(PWD):$(PROJECT_PATH) \
-w=$(PROJECT_PATH) \
appleboy/golang-testing \
sh -c "make install && coverage all"
clean:
rm -rf .cover vendor