Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tag multipart tests #597

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ markers =
lifecycle_expiration
lifecycle_transition
list_objects_v2
multipart
object_lock
role_policy
session_policy
Expand Down
5 changes: 5 additions & 0 deletions s3tests/functional/test_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,7 @@ def test_object_storage_class():
@pytest.mark.storage_class
@pytest.mark.fails_on_aws
@pytest.mark.fails_on_dbstore
@pytest.mark.multipart
def test_object_storage_class_multipart():
sc = configured_storage_classes()
if len(sc) < 2:
Expand Down Expand Up @@ -443,6 +444,7 @@ def test_object_modify_storage_class():
@pytest.mark.storage_class
@pytest.mark.fails_on_aws
@pytest.mark.fails_on_dbstore
@pytest.mark.multipart
def test_object_modify_storage_class_multipart():
_do_test_object_modify_storage_class(_populate_multipart_key, size=11*1024*1024)

Expand Down Expand Up @@ -476,6 +478,7 @@ def test_object_storage_class_copy():
@pytest.mark.storage_class
@pytest.mark.fails_on_aws
@pytest.mark.fails_on_dbstore
@pytest.mark.multipart
def test_object_storage_class_copy_multipart():
_do_test_object_storage_class_copy(_populate_multipart_key, size=9*1024*1024)

Expand Down Expand Up @@ -625,6 +628,7 @@ def _multipart_upload_enc(bucket, s3_key_name, size, part_size=5*1024*1024,

@pytest.mark.encryption
@pytest.mark.fails_on_dbstore
@pytest.mark.multipart
def test_encryption_sse_c_multipart_invalid_chunks_1():
bucket = get_new_bucket()
key = "multipart_enc"
Expand All @@ -649,6 +653,7 @@ def test_encryption_sse_c_multipart_invalid_chunks_1():

@pytest.mark.encryption
@pytest.mark.fails_on_dbstore
@pytest.mark.multipart
def test_encryption_sse_c_multipart_invalid_chunks_2():
bucket = get_new_bucket()
key = "multipart_enc"
Expand Down
Loading