@@ -564,6 +564,7 @@ def test_allow_object_actions_in_user_policy():
564564@pytest .mark .user_policy
565565@pytest .mark .iam_tenant
566566@pytest .mark .fails_on_dbstore
567+ @pytest .mark .fails_on_posix
567568def test_deny_object_actions_in_user_policy ():
568569 client = get_iam_client ()
569570 s3_client_alt = get_alt_client ()
@@ -603,6 +604,7 @@ def test_deny_object_actions_in_user_policy():
603604
604605@pytest .mark .user_policy
605606@pytest .mark .iam_tenant
607+ @pytest .mark .fails_on_posix
606608def test_allow_multipart_actions_in_user_policy ():
607609 client = get_iam_client ()
608610 s3_client_alt = get_alt_client ()
@@ -639,6 +641,7 @@ def test_allow_multipart_actions_in_user_policy():
639641@pytest .mark .user_policy
640642@pytest .mark .iam_tenant
641643@pytest .mark .fails_on_dbstore
644+ @pytest .mark .fails_on_posix
642645def test_deny_multipart_actions_in_user_policy ():
643646 client = get_iam_client ()
644647 s3_client = get_alt_client ()
@@ -682,6 +685,7 @@ def test_deny_multipart_actions_in_user_policy():
682685@pytest .mark .user_policy
683686@pytest .mark .iam_tenant
684687@pytest .mark .fails_on_dbstore
688+ @pytest .mark .fails_on_posix
685689def test_allow_tagging_actions_in_user_policy ():
686690 client = get_iam_client ()
687691 s3_client_alt = get_alt_client ()
@@ -728,6 +732,7 @@ def test_allow_tagging_actions_in_user_policy():
728732@pytest .mark .user_policy
729733@pytest .mark .iam_tenant
730734@pytest .mark .fails_on_dbstore
735+ @pytest .mark .fails_on_posix
731736def test_deny_tagging_actions_in_user_policy ():
732737 client = get_iam_client ()
733738 s3_client = get_alt_client ()
@@ -780,6 +785,7 @@ def test_deny_tagging_actions_in_user_policy():
780785@pytest .mark .user_policy
781786@pytest .mark .iam_tenant
782787@pytest .mark .fails_on_dbstore
788+ @pytest .mark .fails_on_posix
783789def test_verify_conflicting_user_policy_statements ():
784790 s3client = get_alt_client ()
785791 bucket = get_new_bucket (client = s3client )
@@ -812,6 +818,7 @@ def test_verify_conflicting_user_policy_statements():
812818@pytest .mark .user_policy
813819@pytest .mark .iam_tenant
814820@pytest .mark .fails_on_dbstore
821+ @pytest .mark .fails_on_posix
815822def test_verify_conflicting_user_policies ():
816823 s3client = get_alt_client ()
817824 bucket = get_new_bucket (client = s3client )
@@ -850,6 +857,7 @@ def test_verify_conflicting_user_policies():
850857
851858@pytest .mark .user_policy
852859@pytest .mark .iam_tenant
860+ @pytest .mark .fails_on_posix
853861def test_verify_allow_iam_actions ():
854862 policy1 = json .dumps (
855863 {"Version" : "2012-10-17" ,
@@ -2485,6 +2493,7 @@ def test_verify_add_new_client_id_to_oidc(iam_root):
24852493 )
24862494 assert del_response ['ResponseMetadata' ]['HTTPStatusCode' ] == 200
24872495
2496+ @pytest .mark .fails_on_posix
24882497def test_verify_add_existing_client_id_to_oidc (iam_root ):
24892498 url_host = get_iam_path_prefix ()[1 :] + 'example.com'
24902499 url = 'http://' + url_host
@@ -2565,6 +2574,7 @@ def test_verify_remove_client_id_from_oidc(iam_root):
25652574 )
25662575 assert del_response ['ResponseMetadata' ]['HTTPStatusCode' ] == 200
25672576
2577+ @pytest .mark .fails_on_posix
25682578def test_verify_update_thumbprintlist_of_oidc (iam_root ):
25692579 url_host = get_iam_path_prefix ()[1 :] + 'example.com'
25702580 url = 'http://' + url_host
0 commit comments