Skip to content

Commit

Permalink
tests: mark unstable acls tests ok_to_fail
Browse files Browse the repository at this point in the history
  • Loading branch information
rystsov committed Jan 13, 2023
1 parent 231429d commit 65bd692
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/rptest/tests/acls_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import socket
import time
from ducktape.errors import TimeoutError
from ducktape.mark import parametrize, matrix, ignore
from ducktape.mark import parametrize, matrix, ok_to_fail
from ducktape.utils.util import wait_until
from rptest.tests.redpanda_test import RedpandaTest
from rptest.services.cluster import cluster
Expand Down Expand Up @@ -258,6 +258,7 @@ def check_super_user_perms():
client_auth - Controls the value of require_client_auth RP config
'''

@ok_to_fail # https://github.com/redpanda-data/redpanda/issues/8202
@cluster(num_nodes=3, log_allow_list=["Validation errors in node config"])
@matrix(use_tls=[True, False],
use_sasl=[True, False],
Expand Down Expand Up @@ -321,6 +322,7 @@ def should_pass_w_authn_user(use_tls: bool, use_sasl: bool,
# * redpanda.service.admin: the default admin client
# * admin: used for acl bootstrap
# * cluster_describe: the principal under test
@ok_to_fail # https://github.com/redpanda-data/redpanda/issues/8202
@cluster(num_nodes=3)
# DEFAULT: The whole SAN
@parametrize(rules="DEFAULT", fail=True)
Expand Down

0 comments on commit 65bd692

Please sign in to comment.