Simplify Travis build

This commit is contained in:
Cameron Moore 2016-08-16 09:09:19 -05:00
parent d72c454f78
commit d3627b1747
2 changed files with 4 additions and 4 deletions

View file

@ -19,6 +19,3 @@ script:
before_install: before_install:
- gem install asciidoctor - gem install asciidoctor
- sudo pip install docutils - sudo pip install docutils
install:
- go get github.com/stretchr/testify
- go get -v ./...

View file

@ -35,7 +35,7 @@ docker:
docker rm hugo-build docker rm hugo-build
check: fmt vet test test-race check: get fmt vet test test-race
cyclo: cyclo:
@for d in $(DIRS) ; do \ @for d in $(DIRS) ; do \
@ -56,6 +56,9 @@ lint:
echo "^ golint errors!" && echo && exit 1; \ echo "^ golint errors!" && echo && exit 1; \
fi fi
get:
go get -v -t ./...
test: test:
go test ./... go test ./...