Skip to content
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

test: skip tests that are known to be failing #4477

Merged
merged 2 commits into from
Jul 21, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions bigquery/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down
1 change: 1 addition & 0 deletions bigtable/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down
1 change: 1 addition & 0 deletions firestore/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
1 change: 1 addition & 0 deletions pubsub/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1166,6 +1166,7 @@ func TestIntegration_OrderedKeys_Basic(t *testing.T) {
}

func TestIntegration_OrderedKeys_JSON(t *testing.T) {
t.Skip("TestIntegration_OrderedKeys_JSON")
codyoss marked this conversation as resolved.
Show resolved Hide resolved
ctx := context.Background()
client := integrationTestClient(ctx, t, option.WithEndpoint("us-west1-pubsub.googleapis.com:443"))
defer client.Close()
Expand Down