diff --git a/Makefile b/Makefile index ddf0c548af..4146605dce 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,10 @@ test: deps integ: go list ./... | INTEG_TESTS=yes xargs -n1 go test +cover: deps + ./scripts/verify_no_uuid.sh + go list ./... | xargs -n1 go test --cover + format: deps @echo "--> Running go fmt" @go fmt $(PACKAGES) diff --git a/Vagrantfile b/Vagrantfile index 2cb6c7f0d5..101ce30d8c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,9 +2,9 @@ # vi: set ft=ruby : # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! -VAGRANTFILE_API_VERSION = "2" +VAGRANTFILE_API_VERSION = '2' -$script = <