build: Update make core-test for vendoring

This commit is contained in:
James Nugent 2016-03-03 18:08:31 -06:00
parent 8d31c93862
commit 76f203e7e4
1 changed files with 1 additions and 1 deletions

View File

@ -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