You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AWS tests don't require project IDs, nor most GCP ones, as they use the default project set in aws or gcloud. runtimevar actually does, because it to build URLs that use that project ID.
@zombiezen thinks the best thing to do is to force flags to be passed to all of them to avoid magic, although this might break vgo test ./... (not that I've been able to make it work TBH, I always cd to where I want to test from). I see the point here, but the practical downside is problematic.
The other option is for tests that do need them to shell out to gcloud (no programmatic way due to golang/oauth2#241).
The text was updated successfully, but these errors were encountered:
AWS tests don't require project IDs, nor most GCP ones, as they use the default project set in
aws
orgcloud
.runtimevar
actually does, because it to build URLs that use that project ID.@zombiezen thinks the best thing to do is to force flags to be passed to all of them to avoid magic, although this might break
vgo test ./...
(not that I've been able to make it work TBH, I always cd to where I want to test from). I see the point here, but the practical downside is problematic.The other option is for tests that do need them to shell out to
gcloud
(no programmatic way due to golang/oauth2#241).The text was updated successfully, but these errors were encountered: