Merge pull request #20192 from hashicorp/build-test-compile-modularized

make: Make test-compile module-aware
This commit is contained in:
Radek Simko 2019-02-01 18:01:12 +00:00 committed by GitHub
commit e88d4978db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ test-compile: fmtcheck generate
echo " make test-compile TEST=./builtin/providers/test"; \
exit 1; \
fi
go test -c $(TEST) $(TESTARGS)
go test -mod=vendor -c $(TEST) $(TESTARGS)
# testrace runs the race checker
testrace: fmtcheck generate