From 446dec78a4d792b3dbca2a5fb6fb372425ac734d Mon Sep 17 00:00:00 2001 From: Cody Oss <6331106+codyoss@users.noreply.github.com> Date: Fri, 14 Jul 2023 15:27:46 -0500 Subject: [PATCH] test: skip failing tests (#8267) --- bigtable/integration_test.go | 1 + go.work.sum | 1 + pubsub/integration_test.go | 3 +++ 3 files changed, 5 insertions(+) diff --git a/bigtable/integration_test.go b/bigtable/integration_test.go index a801c268c669..a26dd8c8dcc2 100644 --- a/bigtable/integration_test.go +++ b/bigtable/integration_test.go @@ -1539,6 +1539,7 @@ func TestIntegration_TableDeletionProtection(t *testing.T) { // stream and disable change stream on existing table and delete fails if change // stream is enabled. func TestIntegration_EnableChangeStream(t *testing.T) { + t.Skip("https://github.com/googleapis/google-cloud-go/issues/8266") testEnv, err := NewIntegrationEnv() if err != nil { t.Fatalf("IntegrationEnv: %v", err) diff --git a/go.work.sum b/go.work.sum index f00f727e9918..e00614ddeb4b 100644 --- a/go.work.sum +++ b/go.work.sum @@ -1,3 +1,4 @@ +cloud.google.com/go/gaming v1.9.0 h1:7vEhFnZmd931Mo7sZ6pJy7uQPDxF7m7v8xtBheG08tc= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0= diff --git a/pubsub/integration_test.go b/pubsub/integration_test.go index a497e0178b30..366f132b3fc3 100644 --- a/pubsub/integration_test.go +++ b/pubsub/integration_test.go @@ -2062,6 +2062,9 @@ func TestIntegration_TopicUpdateSchema(t *testing.T) { } func TestIntegration_DetectProjectID(t *testing.T) { + if testing.Short() { + t.Skip("Integration tests skipped in short mode") + } ctx := context.Background() testCreds := testutil.Credentials(ctx) if testCreds == nil {