Skip to content

Commit 3eaa331

Browse files
Fix gcp test so that gcs downscoped is always enabled (#2012)
1 parent 91aa0fc commit 3eaa331

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/integ/test_put_get_with_gcp_account.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
pytestmark = pytest.mark.gcp
5858

5959

60-
@pytest.mark.parametrize("enable_gcs_downscoped", [True, False])
60+
@pytest.mark.parametrize("enable_gcs_downscoped", [True])
6161
@pytest.mark.parametrize(
6262
"from_path", [True, pytest.param(False, marks=pytest.mark.skipolddriver)]
6363
)
@@ -127,7 +127,7 @@ def test_put_get_with_gcp(
127127
assert original_contents == contents, "Output is different from the original file"
128128

129129

130-
@pytest.mark.parametrize("enable_gcs_downscoped", [True, False])
130+
@pytest.mark.parametrize("enable_gcs_downscoped", [True])
131131
def test_put_copy_many_files_gcp(
132132
tmpdir,
133133
conn_cnx,
@@ -192,7 +192,7 @@ def run(csr, sql):
192192
run(csr, "drop table if exists {name}")
193193

194194

195-
@pytest.mark.parametrize("enable_gcs_downscoped", [True, False])
195+
@pytest.mark.parametrize("enable_gcs_downscoped", [True])
196196
def test_put_copy_duplicated_files_gcp(
197197
tmpdir,
198198
conn_cnx,
@@ -288,7 +288,7 @@ def run(csr, sql):
288288
run(csr, "drop table if exists {name}")
289289

290290

291-
@pytest.mark.parametrize("enable_gcs_downscoped", [True, False])
291+
@pytest.mark.parametrize("enable_gcs_downscoped", [True])
292292
def test_put_get_large_files_gcp(
293293
tmpdir,
294294
conn_cnx,
@@ -476,7 +476,7 @@ def mocked_get(*args, **kwargs):
476476
assert original_contents == contents, "Output is different from the original file"
477477

478478

479-
@pytest.mark.parametrize("enable_gcs_downscoped", [True, False])
479+
@pytest.mark.parametrize("enable_gcs_downscoped", [True])
480480
def test_auto_compress_off_gcp(
481481
tmpdir,
482482
conn_cnx,

0 commit comments

Comments
 (0)