finish removing vet from the makefile
The test target will already cover vet, since it's run as part of the test command now. Also remove the `go test -i` since it's no longer needed with the new build cache.
This commit is contained in:
parent
6ebb7aab56
commit
ec62819b3a
3
Makefile
3
Makefile
|
@ -1,7 +1,7 @@
|
||||||
TEST?=./...
|
TEST?=./...
|
||||||
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
|
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
|
||||||
|
|
||||||
default: test vet
|
default: test
|
||||||
|
|
||||||
tools:
|
tools:
|
||||||
go get -u github.com/kardianos/govendor
|
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
|
# 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.
|
# one command creates memory usage issues when running in Travis-CI.
|
||||||
test: fmtcheck generate
|
test: fmtcheck generate
|
||||||
go test -i $(TEST) || exit 1
|
|
||||||
go list $(TEST) | xargs -t -n4 go test $(TESTARGS) -timeout=60s -parallel=4
|
go list $(TEST) | xargs -t -n4 go test $(TESTARGS) -timeout=60s -parallel=4
|
||||||
|
|
||||||
# testacc runs acceptance tests
|
# testacc runs acceptance tests
|
||||||
|
|
Loading…
Reference in New Issue