-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds a labels test matrix #1309
Adds a labels test matrix #1309
Conversation
Does the PR have any schema changes?Does the PR have any schema changes?Found 145 breaking changes: Resources
Functions
Types
New resources:
Maintainer note: consult the runbook for dealing with any breaking changes. |
Co-authored-by: Ian Wahbe <ian@wahbe.com>
examples/examples_go_test.go
Outdated
@@ -1,15 +1,15 @@ | |||
// Copyright 2016-2017, Pulumi Corporation. All rights reserved. | |||
//go:build go || all | |||
// +build go all |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we need to put these back or our go tests will run for each language.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's pull in the bridge commit here so we show the tests will pass.
…ffForChanges. Re-add Go build tags to Go test file.
788bf91
into
upgrade-terraform-provider-google-beta-to-v5.0.0
On top of #1238
The new release of GCP adds a DefaultLabels feature.
This change ports a test matrix from a similar feature of AWS provider. The matrix tests that for
all interesting label combinations (empty, non-empty, 0, 1, or two labels, at provider DefaultLabels
or resource Labels level), Pulumi provider can transition a sample resource from one combination to
another, and the actual effective set of labels is what you would expect.
What is currently not tested here but may need scrutiny based on similar issues in AWS:
into management under GCP; this is not tested here
The tests are currently failing likely due to a bridge issue:
pulumi/pulumi-terraform-bridge#1501