From 8006ee2957d7e15c7e5e2ea5189d15d074ef35e0 Mon Sep 17 00:00:00 2001 From: Cody Oss <6331106+codyoss@users.noreply.github.com> Date: Wed, 21 Jul 2021 15:43:46 -0600 Subject: [PATCH] test: skip tests that are known to be failing (#4477) Trying to get our builds back to green. Skipping tests, they should be unskipped before closing the flaky bot issues. Updates: #4325 Updates: #4173 Updates: #4418 Updates: #3626 --- bigquery/integration_test.go | 1 + bigtable/integration_test.go | 1 + firestore/integration_test.go | 1 + pubsub/integration_test.go | 1 + 4 files changed, 4 insertions(+) diff --git a/bigquery/integration_test.go b/bigquery/integration_test.go index af969e387b3..25ba131c1f0 100644 --- a/bigquery/integration_test.go +++ b/bigquery/integration_test.go @@ -1948,6 +1948,7 @@ func TestIntegration_QueryStatistics(t *testing.T) { } func TestIntegration_Load(t *testing.T) { + t.Skip("https://github.com/googleapis/google-cloud-go/issues/4418") if client == nil { t.Skip("Integration tests skipped") } diff --git a/bigtable/integration_test.go b/bigtable/integration_test.go index 0d7d9afec7f..85817f9b04d 100644 --- a/bigtable/integration_test.go +++ b/bigtable/integration_test.go @@ -1534,6 +1534,7 @@ func TestIntegration_AdminCreateInstance(t *testing.T) { } func TestIntegration_AdminEncryptionInfo(t *testing.T) { + t.Skip("https://github.com/googleapis/google-cloud-go/issues/4173") if instanceToCreate == "" { t.Skip("instanceToCreate not set, skipping instance creation testing") } diff --git a/firestore/integration_test.go b/firestore/integration_test.go index ca841858f98..9d823be9b60 100644 --- a/firestore/integration_test.go +++ b/firestore/integration_test.go @@ -1603,6 +1603,7 @@ func TestDetectProjectID(t *testing.T) { } func TestIntegration_ColGroupRefPartitions(t *testing.T) { + t.Skip("https://github.com/googleapis/google-cloud-go/issues/4325") h := testHelper{t} coll := integrationColl(t) ctx := context.Background() diff --git a/pubsub/integration_test.go b/pubsub/integration_test.go index 9a9452257b9..505bd4d197e 100644 --- a/pubsub/integration_test.go +++ b/pubsub/integration_test.go @@ -1166,6 +1166,7 @@ func TestIntegration_OrderedKeys_Basic(t *testing.T) { } func TestIntegration_OrderedKeys_JSON(t *testing.T) { + t.Skip("https://github.com/googleapis/google-cloud-go/issues/3626") ctx := context.Background() client := integrationTestClient(ctx, t, option.WithEndpoint("us-west1-pubsub.googleapis.com:443")) defer client.Close()