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

tests: unskip s3 multipart tests #806

Merged
merged 1 commit into from
Aug 15, 2024
Merged
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: 0 additions & 1 deletion pytest_tests/tests/services/s3_gate/test_s3_gate.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ def test_s3_api_versioning(self, bucket, simple_object_size):
), f"Expected object content is\n{version_2_content}\nGot\n{got_content}"

@pytest.mark.s3_gate_multipart
@pytest.mark.skip("Requires further investigation. S3 gate returns 500 on this test")
@allure.title("Test S3 Object Multipart API")
def test_s3_api_multipart(self, bucket, simple_object_size):
"""
Expand Down
2 changes: 0 additions & 2 deletions pytest_tests/tests/services/s3_gate/test_s3_multipart.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ def pytest_generate_tests(metafunc):
@pytest.mark.s3_gate
@pytest.mark.s3_gate_multipart
class TestS3GateMultipart(TestNeofsS3GateBase):
@pytest.mark.skip("Requires further investigation. S3 gate returns 500 on this test")
@allure.title("Test S3 Object Multipart API")
def test_s3_object_multipart(self):
bucket = s3_gate_bucket.create_bucket_s3(self.s3_client, bucket_configuration="rep-1")
Expand Down Expand Up @@ -78,7 +77,6 @@ def test_s3_abort_multipart(self):
uploads = s3_gate_object.list_multipart_uploads_s3(self.s3_client, bucket)
assert not uploads, f"Expected there is no uploads in bucket {bucket}"

@pytest.mark.skip("Requires further investigation. S3 gate returns 500 on this test")
@allure.title("Test S3 Upload Part Copy")
def test_s3_multipart_copy(self):
bucket = s3_gate_bucket.create_bucket_s3(self.s3_client, bucket_configuration="rep-1")
Expand Down
1 change: 0 additions & 1 deletion pytest_tests/tests/services/s3_gate/test_s3_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,6 @@ def test_s3_get_versioning(self, bucket, simple_object_size):
object_3 = s3_gate_object.get_object_s3(self.s3_client, bucket, obj_key, full_output=True)
assert object_3.get("VersionId") == version_id_2, f"Get object with version {version_id_2}"

@pytest.mark.skip("Requires further investigation. S3 gate returns 500 on this test")
@allure.title("Test S3: Get range")
def test_s3_get_range(self, bucket, complex_object_size: int, simple_object_size: int):
file_path = generate_file(complex_object_size)
Expand Down
Loading