Skip to content

Commit 316f55c

Browse files
authored
chore: skip some storage tests due to permissions (#5389)
1 parent 053c2b5 commit 316f55c

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

storage/acl/acl_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import (
2626

2727
// TestACL runs all of the package tests.
2828
func TestACL(t *testing.T) {
29+
t.Skip("Skipping due to project permissions changes, see: b/445769988")
2930
tc := testutil.SystemTest(t)
3031
ctx := context.Background()
3132
client, err := storage.NewClient(ctx)

storage/buckets/buckets_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,7 @@ func TestBucketWebsiteInfo(t *testing.T) {
584584
}
585585

586586
func TestSetBucketPublicIAM(t *testing.T) {
587+
t.Skip("Skipping due to project permissions changes, see: b/445769988")
587588
tc := testutil.SystemTest(t)
588589
ctx := context.Background()
589590

storage/control/folders_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ func TestMain(m *testing.M) {
6161
}
6262

6363
func TestFolders(t *testing.T) {
64+
t.Skip("Skipping due to project permissions changes, see: b/445769988")
6465
tc := testutil.SystemTest(t)
6566
ctx := context.Background()
6667

storage/objects/objects_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ func TestObjects(t *testing.T) {
220220
t.Errorf("getMetadata: %v", err)
221221
}
222222
t.Run("publicFile", func(t *testing.T) {
223+
t.Skip("Skipping due to project permissions changes, see: b/445769988")
223224
if err := makePublic(io.Discard, bucket, object1); err != nil {
224225
t.Errorf("makePublic: %v", err)
225226
}
@@ -376,6 +377,7 @@ func TestKMSObjects(t *testing.T) {
376377
}
377378

378379
func TestV4SignedURL(t *testing.T) {
380+
t.Skip("Skipping due to project permissions changes, see: b/445769988")
379381
tc := testutil.SystemTest(t)
380382
ctx := context.Background()
381383
client, err := storage.NewClient(ctx)

0 commit comments

Comments
 (0)