From 12966dc9f77e19a7260382c95bc4e089f7976309 Mon Sep 17 00:00:00 2001 From: Chavez Date: Thu, 4 Dec 2014 21:24:05 -0800 Subject: [PATCH 1/3] Vagrant updates * Add go tools to provision script * Sync project folder * Fix ruby styling issues * Add --cover flag to test commands --- Makefile | 4 ++-- Vagrantfile | 28 ++++++++++++++++------------ 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/Makefile b/Makefile index ddf0c548a..3eb003341 100644 --- a/Makefile +++ b/Makefile @@ -16,10 +16,10 @@ deps: test: deps ./scripts/verify_no_uuid.sh - go list ./... | xargs -n1 go test + go list ./... | xargs -n1 go test --cover integ: - go list ./... | INTEG_TESTS=yes xargs -n1 go test + go list ./... | INTEG_TESTS=yes xargs -n1 go test -test --cover format: deps @echo "--> Running go fmt" diff --git a/Vagrantfile b/Vagrantfile index 2cb6c7f0d..101ce30d8 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 = <