From e899432689b66761905523922bd71a6c0f683776 Mon Sep 17 00:00:00 2001 From: Brian McCutchon Date: Tue, 16 Oct 2018 17:41:25 -0700 Subject: [PATCH] Skip public bucket test in VPCSC --- storage/tests/system.py | 1 + 1 file changed, 1 insertion(+) diff --git a/storage/tests/system.py b/storage/tests/system.py index 34d8085c1fb6..03e11a4d43e8 100644 --- a/storage/tests/system.py +++ b/storage/tests/system.py @@ -1083,6 +1083,7 @@ class TestAnonymousClient(unittest.TestCase): PUBLIC_BUCKET = 'gcp-public-data-landsat' + @unittest.skipIf(RUNNING_IN_VPCSC, 'Test is not VPCSC compatible.') def test_access_to_public_bucket(self): anonymous = storage.Client.create_anonymous_client() bucket = anonymous.bucket(self.PUBLIC_BUCKET)