From 8013da3e5141e42c164d96538d3fcb2cdb5c1b0e Mon Sep 17 00:00:00 2001 From: Ian Wahbe Date: Tue, 10 Dec 2024 14:04:07 +0100 Subject: [PATCH] Skip flaky tests The two tests are: - [TestIamBinding](https://github.com/pulumi/pulumi-gcp/issues/2725) - [TestIamMember](https://github.com/pulumi/pulumi-gcp/issues/2726) --- provider/provider_yaml_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/provider/provider_yaml_test.go b/provider/provider_yaml_test.go index c622ac0748..eb0c7ec208 100644 --- a/provider/provider_yaml_test.go +++ b/provider/provider_yaml_test.go @@ -90,6 +90,7 @@ func TestNetworkUpgrade(t *testing.T) { } func TestClusterUpgrade(t *testing.T) { + t.Skipf("TODO[https://github.com/pulumi/pulumi-gcp/issues/2729]: Flaky") testUpgrade(t, "test-programs/cluster", optproviderupgrade.BaselineOpts(opttest.DownloadProviderVersion(providerName, "7.2.1"))) } @@ -101,6 +102,7 @@ func skipIfNotCI(t *testing.T) { } func TestIamBinding(t *testing.T) { + t.Skip("TODO[https://github.com/pulumi/pulumi-gcp/issues/2725]: Flaky") skipIfNotCI(t) // ServiceAccount requires 7.0 testUpgrade(t, "test-programs/iam-binding", @@ -108,6 +110,7 @@ func TestIamBinding(t *testing.T) { } func TestIamMember(t *testing.T) { + t.Skip("TODO[https://github.com/pulumi/pulumi-gcp/issues/2726]: Flaky") skipIfNotCI(t) // ServiceAccount requires 7.0 testUpgrade(t, "test-programs/iam-member",