Skip to content

Commit

Permalink
tests: add skips for legally failing tests
Browse files Browse the repository at this point in the history
Signed-off-by: Evgeniy Zayats <[email protected]>
  • Loading branch information
Evgeniy Zayats committed May 23, 2024
1 parent cc050f8 commit 6a69599
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 @@ -4875,6 +4875,7 @@ def test_bucket_acl_canned_publicreadwrite():
)


@pytest.mark.skip(reason="Not Implemented")
def test_bucket_acl_canned_authenticatedread():
bucket_name = get_new_bucket_name()
client = get_client()
Expand Down Expand Up @@ -5066,6 +5067,7 @@ def test_object_acl_canned_publicreadwrite():
)


@pytest.mark.skip(reason="Not Implemented")
def test_object_acl_canned_authenticatedread():
bucket_name = get_new_bucket()
client = get_client()
Expand Down Expand Up @@ -8021,6 +8023,7 @@ def _cors_request_and_check(
assert r.headers.get("access-control-allow-methods", None) == expect_allow_methods


@pytest.mark.skip(reason="Reimplemented in test_s3_neofs")
def test_cors_origin_response():
bucket_name = _setup_bucket_acl(bucket_acl="public-read")
client = get_client()
Expand Down

0 comments on commit 6a69599

Please sign in to comment.