Skip to content

Commit

Permalink
mark two tests that fail on dbstore
Browse files Browse the repository at this point in the history
also add @pytest.mark.checksum for new checksum
tests

Signed-off-by: Matt Benjamin <mbenjamin@redhat.com>
  • Loading branch information
mattbenjamin committed Jul 3, 2024
1 parent c0f0b67 commit 8277a9f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions s3tests_boto3/functional/test_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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()
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8277a9f

Please sign in to comment.