Merge pull request #17408 from hashicorp/jbardin/makefile

finish removing vet from the makefile
This commit is contained in:
James Bardin 2018-02-21 16:05:14 -05:00 committed by GitHub
commit e5392a194e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,7 @@
TEST?=./...
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
default: test vet
default: test
tools:
go get -u github.com/kardianos/govendor
@ -30,7 +30,6 @@ plugin-dev: generate
# we run this one package at a time here because running the entire suite in
# one command creates memory usage issues when running in Travis-CI.
test: fmtcheck generate
go test -i $(TEST) || exit 1
go list $(TEST) | xargs -t -n4 go test $(TESTARGS) -timeout=60s -parallel=4
# testacc runs acceptance tests