Skip to content

Commit

Permalink
Add no_sign_request to s3 read test
Browse files Browse the repository at this point in the history
  • Loading branch information
gspowley committed Sep 27, 2024
1 parent 2271db0 commit 26d60cb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion apis/python/tests/test_tiledbvcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,12 @@ def test_sample_and_region_partitioned_read():
def test_large_export_correctness():
uri = "s3://tiledb-inc-demo-data/tiledbvcf-arrays/v4/vcf-samples-20"

ds = tiledbvcf.Dataset(uri)
tiledb_config = {
"vfs.s3.no_sign_request": True,
"vfs.s3.region": "us-east-1",
}

ds = tiledbvcf.Dataset(uri, tiledb_config=tiledb_config)
df = ds.read(
attrs=[
"sample_name",
Expand Down

0 comments on commit 26d60cb

Please sign in to comment.