From de06b9d8f2683d09cb3d49dbc7f6f4465673ca6c 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 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/provider/provider_yaml_test.go b/provider/provider_yaml_test.go index c622ac0748..6837ea30a6 100644 --- a/provider/provider_yaml_test.go +++ b/provider/provider_yaml_test.go @@ -101,6 +101,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 +109,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",