From: Matt Benjamin Date: Wed, 3 Jul 2024 13:42:37 +0000 (-0400) Subject: mark two tests that fail on dbstore X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8277a9fb9aa66ab8b24f603c4df545928a813f81;p=s3-tests.git mark two tests that fail on dbstore also add @pytest.mark.checksum for new checksum tests Signed-off-by: Matt Benjamin --- diff --git a/s3tests_boto3/functional/test_s3.py b/s3tests_boto3/functional/test_s3.py index 24301baf..20cc7c30 100644 --- a/s3tests_boto3/functional/test_s3.py +++ b/s3tests_boto3/functional/test_s3.py @@ -13458,6 +13458,7 @@ def test_object_checksum_sha256(): assert error_code == 'InvalidRequest' @pytest.mark.checksum +@pytest.mark.fails_on_dbstore def test_multipart_checksum_sha256(): bucket = get_new_bucket() client = get_client() @@ -13522,6 +13523,7 @@ def test_multipart_checksum_sha256(): assert composite_sha256sum == response['ChecksumSHA256'] @pytest.mark.checksum +@pytest.mark.fails_on_dbstore def test_multipart_checksum_3parts(): bucket = get_new_bucket() client = get_client() @@ -13559,6 +13561,7 @@ def test_multipart_checksum_3parts(): response = client.head_object(Bucket=bucket, Key=key, ChecksumMode='ENABLED') assert composite_sha256sum == response['ChecksumSHA256'] +@pytest.mark.checksum def test_post_object_upload_checksum(): megabytes = 1024 * 1024 min_size = 0