mirror of
https://github.com/hashicorp/terraform.git
synced 2026-06-08 16:35:25 -04:00
build: Allow TESTARGS on make core-test
This commit is contained in:
parent
2b13e930ff
commit
27d21778a2
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -29,7 +29,7 @@ core-dev: generate
|
|||
|
||||
# Shorthand for quickly testing the core of Terraform (i.e. "not providers")
|
||||
core-test: generate
|
||||
@echo "Testing core packages..." && go test -tags 'core' $(shell go list ./... | grep -v -E 'builtin|vendor')
|
||||
@echo "Testing core packages..." && go test -tags 'core' $(TESTARGS) $(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
|
||||
|
|
|
|||
Loading…
Reference in a new issue