From 76f203e7e47f5b0f4ba359c03e1d116d48c1b0aa Mon Sep 17 00:00:00 2001 From: James Nugent Date: Thu, 3 Mar 2016 18:08:31 -0600 Subject: [PATCH] build: Update make core-test for vendoring --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 60ed0886d..4648ef234 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ core-dev: fmtcheck generate # Shorthand for quickly testing the core of Terraform (i.e. "not providers") core-test: generate - @echo "Testing core packages..." && go test $(shell go list ./... | grep -v builtin) + @echo "Testing core packages..." && go test $(shell go list ./... | grep -v -E 'builtin|vendor') # Shorthand for building and installing just one plugin for local testing. # Run as (for example): make plugin-dev PLUGIN=provider-aws