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:
- gem install asciidoctor
- 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
check: fmt vet test test-race
check: get fmt vet test test-race
cyclo:
@for d in $(DIRS) ; do \
@ -56,6 +56,9 @@ lint:
echo "^ golint errors!" && echo && exit 1; \
fi
get:
go get -v -t ./...
test:
go test ./...