当我运行 pkg/mod/github.com/gruntwork-io/terratest/test/azure ...
go test -v -run TerraformAzureKeyvaultExample
我收到以下错误:
包 github.com/gruntwork-io/terratest/test/azure:构建约束排除所有 Go 文件....
有没有其他人遇到过这个问题?如何禁用此功能以便我可以实际运行 Azure terratest?
-泰国-
根据 [this issue][1] 尝试使用-tags azure选项,如下所示:
go test -tags azure .
它对我有用。[1]:https ://github.com/gruntwork-io/terratest/issues/557