From a30f6e001050c3c0117fab2f876ed6ab1bb07274 Mon Sep 17 00:00:00 2001 From: Matt Benjamin Date: Fri, 29 Nov 2024 12:31:54 -0500 Subject: [PATCH] mark attribute tests as failing on dbstore (for now) Signed-off-by: Matt Benjamin --- 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 5e8cad1..e5f5fd7 100644 --- a/s3tests_boto3/functional/test_s3.py +++ b/s3tests_boto3/functional/test_s3.py @@ -15613,6 +15613,7 @@ def test_get_versioned_object_attributes(): assert 'ObjectParts' not in response @pytest.mark.encryption +@pytest.mark.fails_on_dbstore def test_get_sse_c_encrypted_object_attributes(): bucket_name = get_new_bucket() client = get_client() @@ -15648,6 +15649,7 @@ def test_get_sse_c_encrypted_object_attributes(): assert response['StorageClass'] == 'STANDARD' assert 'ObjectParts' not in response +@pytest.mark.fails_on_dbstore def test_get_object_attributes(): bucket_name = get_new_bucket() client = get_client()