Skip to content

Commit

Permalink
Merge pull request #49 from evgeniiz321/update-skips-p3
Browse files Browse the repository at this point in the history
tests: replace 'Potential Bug' skips with actual bugs, part 3
  • Loading branch information
roman-khimov authored Oct 18, 2023
2 parents c858e79 + 403f301 commit 976196e
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions s3tests_boto3/functional/test_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -4770,7 +4770,7 @@ def test_bucket_acl_canned_during_create():
)


@pytest.mark.skip(reason="Potential Bug")
@pytest.mark.skip(reason="https://github.com/nspcc-dev/neofs-s3-gw/issues/857")
def test_bucket_acl_canned():
bucket_name = get_new_bucket_name()
client = get_client()
Expand Down Expand Up @@ -4822,7 +4822,7 @@ def test_bucket_acl_canned():
)


@pytest.mark.skip(reason="Potential Bug")
@pytest.mark.skip(reason="https://github.com/nspcc-dev/neofs-s3-gw/issues/857")
def test_bucket_acl_canned_publicreadwrite():
bucket_name = get_new_bucket_name()
client = get_client()
Expand Down Expand Up @@ -4863,7 +4863,7 @@ def test_bucket_acl_canned_publicreadwrite():
)


@pytest.mark.skip(reason="Potential Bug")
@pytest.mark.skip(reason="https://github.com/nspcc-dev/neofs-s3-gw/issues/858")
def test_bucket_acl_canned_authenticatedread():
bucket_name = get_new_bucket_name()
client = get_client()
Expand Down Expand Up @@ -4897,7 +4897,7 @@ def test_bucket_acl_canned_authenticatedread():
)


@pytest.mark.skip(reason="Potential Bug")
@pytest.mark.skip(reason="https://github.com/nspcc-dev/neofs-s3-gw/issues/859")
def test_object_acl_default():
bucket_name = get_new_bucket()
client = get_client()
Expand All @@ -4924,7 +4924,7 @@ def test_object_acl_default():
)


@pytest.mark.skip(reason="Potential Bug")
@pytest.mark.skip(reason="https://github.com/nspcc-dev/neofs-s3-gw/issues/857")
def test_object_acl_canned_during_create():
bucket_name = get_new_bucket()
client = get_client()
Expand Down Expand Up @@ -4959,7 +4959,7 @@ def test_object_acl_canned_during_create():
)


@pytest.mark.skip(reason="Potential Bug")
@pytest.mark.skip(reason="https://github.com/nspcc-dev/neofs-s3-gw/issues/857")
def test_object_acl_canned():
bucket_name = get_new_bucket()
client = get_client()
Expand Down Expand Up @@ -5014,7 +5014,7 @@ def test_object_acl_canned():
)


@pytest.mark.skip(reason="Potential Bug")
@pytest.mark.skip(reason="https://github.com/nspcc-dev/neofs-s3-gw/issues/857")
def test_object_acl_canned_publicreadwrite():
bucket_name = get_new_bucket()
client = get_client()
Expand Down Expand Up @@ -5059,7 +5059,7 @@ def test_object_acl_canned_publicreadwrite():
)


@pytest.mark.skip(reason="Potential Bug")
@pytest.mark.skip(reason="https://github.com/nspcc-dev/neofs-s3-gw/issues/858")
def test_object_acl_canned_authenticatedread():
bucket_name = get_new_bucket()
client = get_client()
Expand Down Expand Up @@ -5096,7 +5096,7 @@ def test_object_acl_canned_authenticatedread():
)


@pytest.mark.skip(reason="Potential Bug")
@pytest.mark.skip(reason="https://github.com/nspcc-dev/neofs-s3-gw/issues/857")
def test_object_acl_canned_bucketownerread():
bucket_name = get_new_bucket_name()
main_client = get_client()
Expand Down Expand Up @@ -5142,7 +5142,7 @@ def test_object_acl_canned_bucketownerread():
)


@pytest.mark.skip(reason="Potential Bug")
@pytest.mark.skip(reason="https://github.com/nspcc-dev/neofs-s3-gw/issues/857")
def test_object_acl_canned_bucketownerfullcontrol():
bucket_name = get_new_bucket_name()
main_client = get_client()
Expand Down Expand Up @@ -5596,7 +5596,7 @@ def test_bucket_acl_grant_userid_writeacp():
_check_bucket_acl_grant_can_writeacp(bucket_name)


@pytest.mark.skip(reason="Potential Bug")
@pytest.mark.skip(reason="https://github.com/nspcc-dev/neofs-s3-gw/issues/860")
def test_bucket_acl_grant_nonexist_user():
bucket_name = get_new_bucket()
client = get_client()
Expand All @@ -5622,7 +5622,7 @@ def test_bucket_acl_grant_nonexist_user():
assert error_code == "InvalidArgument"


@pytest.mark.skip(reason="Potential Bug")
@pytest.mark.skip(reason="https://github.com/nspcc-dev/neofs-s3-gw/issues/861")
def test_bucket_acl_no_grants():
bucket_name = get_new_bucket()
client = get_client()
Expand Down

0 comments on commit 976196e

Please sign in to comment.