Update Makefile to require go 1.8 for testing

Signed-off-by: Michael de Sa <mjdesa@gmail.com>
pull/10616/head
Chris Goller 2017-12-18 18:19:30 -06:00 committed by Michael Desa
parent 7d56fdfc75
commit fe2e2a865c
1 changed files with 2 additions and 2 deletions

View File

@ -93,10 +93,10 @@ internal.pb.go: bolt/internal/internal.proto
test: jstest gotest gotestrace
gotest:
go test `go list ./... | grep -v /vendor/`
go test ./...
gotestrace:
go test -race `go list ./... | grep -v /vendor/`
go test -race ./...
jstest:
cd ui && yarn test