From 22edc91f0a48ceeeea4d365d7cc84ef45927a2ab Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Fri, 6 Sep 2024 09:04:57 -0400 Subject: [PATCH] s3: add fails_on_aws marker to tests with tenanted bucket names Signed-off-by: Casey Bodley --- s3tests_boto3/functional/test_s3.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/s3tests_boto3/functional/test_s3.py b/s3tests_boto3/functional/test_s3.py index 55eb821..f55f4fe 100644 --- a/s3tests_boto3/functional/test_s3.py +++ b/s3tests_boto3/functional/test_s3.py @@ -10576,6 +10576,7 @@ def test_bucketv2_policy_acl(): client.put_bucket_acl(Bucket=bucket_name, ACL='public-read') @pytest.mark.bucket_policy +@pytest.mark.fails_on_aws def test_bucket_policy_different_tenant(): bucket_name = get_new_bucket() client = get_client() @@ -10608,6 +10609,7 @@ def test_bucket_policy_different_tenant(): assert len(response['Contents']) == 1 @pytest.mark.bucket_policy +@pytest.mark.fails_on_aws def test_bucket_policy_tenanted_bucket(): tenant_client = get_tenant_client() bucket_name = get_new_bucket(tenant_client)