Azure terratest - 构建约束排除所有 Go 文件

Azure terratest - Build constraints exclude all Go files

当我 运行 pkg/mod/github.com/gruntwork-io/terratest/test/azure ...

go test -v -run TerraformAzureKeyvaultExample

我收到以下错误:

package github.com/gruntwork-io/terratest/test/azure: build constraints exclude all Go files....

还有其他人遇到过这个问题吗?如何禁用它以便我实际上可以 运行 Azure terratest?

-泰语-

根据 [此问题][1] 尝试使用 -tags azure 选项,如下所示:

go test -tags azure .

它对我有用。 [1]: https://github.com/gruntwork-io/terratest/issues/557