From 8f988c10b9eb1ad066d79af1a06fbab5c460f4fb Mon Sep 17 00:00:00 2001 From: Matt Benjamin Date: Wed, 3 Jul 2024 09:42:37 -0400 Subject: [PATCH] mark two tests that fail on dbstore also add @pytest.mark.checksum for new checksum tests Signed-off-by: Matt Benjamin (cherry picked from commit 8277a9fb9aa66ab8b24f603c4df545928a813f81) --- s3tests_boto3/functional/test_s3.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/s3tests_boto3/functional/test_s3.py b/s3tests_boto3/functional/test_s3.py index 24301ba..20cc7c3 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