Update Makefile to run tests 4 packages at a time

We were running out of RAM on Travis
This commit is contained in:
Mitchell Hashimoto 2017-01-21 09:42:54 -08:00
parent d9bc1572eb
commit f4ca79d7b7
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 3 additions and 2 deletions

View File

@ -38,8 +38,9 @@ plugin-dev: generate
mv $(GOPATH)/bin/$(PLUGIN) $(GOPATH)/bin/terraform-$(PLUGIN)
# test runs the unit tests
test: fmtcheck errcheck generate
TF_ACC= go test $(TEST) $(TESTARGS) -timeout=30s -parallel=4
test:# fmtcheck errcheck generate
echo $(TEST) | \
xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
# testacc runs acceptance tests
testacc: fmtcheck generate